ARM: Realview/Versatile/Integrator: separate out common clock code
[linux-2.6/btrfs-unstable.git] / arch / arm / mach-versatile / include / mach / clkdev.h
blobfefe4671255c8077a6407bd6932b0482635c3bb6
1 #ifndef __ASM_MACH_CLKDEV_H
2 #define __ASM_MACH_CLKDEV_H
4 #include <asm/hardware/icst.h>
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);
13 #define __clk_get(clk) ({ 1; })
14 #define __clk_put(clk) do { } while (0)
16 #endif