clkdev.h 168 B

12345678910111213
  1. #ifndef __MACH_CLKDEV_H
  2. #define __MACH_CLKDEV_H
  3. static inline int __clk_get(struct clk *clk)
  4. {
  5. return 1;
  6. }
  7. static inline void __clk_put(struct clk *clk)
  8. {
  9. }
  10. #endif