clkdev.h 288 B

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