clkdev.h 321 B

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