2008-11-08 15:05:55 -05:00
|
|
|
#ifndef __ASM_MACH_CLKDEV_H
|
|
|
|
#define __ASM_MACH_CLKDEV_H
|
|
|
|
|
2010-03-01 11:18:39 -05:00
|
|
|
#include <plat/clock.h>
|
2010-01-14 07:48:06 -05:00
|
|
|
|
|
|
|
struct clk {
|
|
|
|
unsigned long rate;
|
2010-03-01 11:18:39 -05:00
|
|
|
const struct clk_ops *ops;
|
2010-01-14 07:48:06 -05:00
|
|
|
const struct icst_params *params;
|
2010-01-14 15:09:34 -05:00
|
|
|
void __iomem *vcoreg;
|
2010-01-14 07:48:06 -05:00
|
|
|
};
|
|
|
|
|
2008-11-08 15:05:55 -05:00
|
|
|
#define __clk_get(clk) ({ 1; })
|
|
|
|
#define __clk_put(clk) do { } while (0)
|
|
|
|
|
|
|
|
#endif
|