]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/arm/mach-realview/include/mach/clkdev.h
ARM: Realview/Versatile/Integrator: separate out common clock code
[net-next-2.6.git] / arch / arm / mach-realview / include / mach / clkdev.h
CommitLineData
cf30fb4a
RK
1#ifndef __ASM_MACH_CLKDEV_H
2#define __ASM_MACH_CLKDEV_H
3
f4b8b319
RK
4#include <asm/hardware/icst.h>
5
6struct 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
cf30fb4a
RK
13#define __clk_get(clk) ({ 1; })
14#define __clk_put(clk) do { } while (0)
15
16#endif