clkdev.h 181 B

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