ARM: Realview/Versatile/Integrator: separate out common clock code
[safe/jmp/linux-2.6] / arch / arm / mach-versatile / include / mach / clkdev.h
1 #ifndef __ASM_MACH_CLKDEV_H
2 #define __ASM_MACH_CLKDEV_H
3
4 #include <asm/hardware/icst.h>
5
6 struct clk {
7         unsigned long           rate;
8         const struct icst_params *params;
9         u32                     oscoff;
10         void                    (*setvco)(struct clk *, struct icst_vco vco);
11 };
12
13 #define __clk_get(clk) ({ 1; })
14 #define __clk_put(clk) do { } while (0)
15
16 #endif