clkdev.h 264 B

123456789101112131415
  1. #ifndef __ASM_MACH_CLKDEV_H
  2. #define __ASM_MACH_CLKDEV_H
  3. #include <plat/clock.h>
  4. struct clk {
  5. const struct clk_ops *ops;
  6. unsigned long rate;
  7. const struct icst_params *params;
  8. };
  9. #define __clk_get(clk) ({ 1; })
  10. #define __clk_put(clk) do { } while (0)
  11. #endif