2008-11-09 04:05:55 +08:00
|
|
|
#ifndef __ASM_MACH_CLKDEV_H
|
|
|
|
#define __ASM_MACH_CLKDEV_H
|
|
|
|
|
2010-01-14 20:48:06 +08:00
|
|
|
#include <asm/hardware/icst.h>
|
|
|
|
|
|
|
|
struct clk {
|
|
|
|
unsigned long rate;
|
|
|
|
const struct icst_params *params;
|
2010-01-15 04:09:34 +08:00
|
|
|
void __iomem *vcoreg;
|
2010-01-14 20:48:06 +08:00
|
|
|
void (*setvco)(struct clk *, struct icst_vco vco);
|
|
|
|
};
|
|
|
|
|
2008-11-09 04:05:55 +08:00
|
|
|
#define __clk_get(clk) ({ 1; })
|
|
|
|
#define __clk_put(clk) do { } while (0)
|
|
|
|
|
|
|
|
#endif
|