summaryrefslogtreecommitdiff
path: root/arch/arm/mach-integrator/include/mach/clkdev.h
blob: ed67e8edc0d1e2cf4ac063610ebff27ec72d8258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef __ASM_MACH_CLKDEV_H
#define __ASM_MACH_CLKDEV_H

#include <linux/module.h>
#include <asm/hardware/icst.h>

struct clk {
	unsigned long		rate;
	struct module		*owner;
	const struct icst_params *params;
	void __iomem		*vcoreg;
	void			(*setvco)(struct clk *, struct icst_vco vco);
	void			*data;
};

static inline int __clk_get(struct clk *clk)
{
	return try_module_get(clk->owner);
}

static inline void __clk_put(struct clk *clk)
{
	module_put(clk->owner);
}

#endif