mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
91b87a4795
The ICST307 VCO clock has a shared driver in the ARM architecture. This patch provides a wrapper into the common clock framework so we can use the implementation in the ARM architecture without duplicating the code until all ARM platforms using this VCO are moved over. At that point we can merge the driver from the ARM platform into the generic file altogether. Cc: Russell King <linux@arm.linux.org.uk> Cc: Mike Turquette <mturquette@ti.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> [mturquette@linaro.org: removed versatile Kconfig] Signed-off-by: Mike Turquette <mturquette@linaro.org>
11 lines
256 B
C
11 lines
256 B
C
#include <asm/hardware/icst.h>
|
|
|
|
struct clk_icst_desc {
|
|
const struct icst_params *params;
|
|
struct icst_vco (*getvco)(void);
|
|
void (*setvco)(struct icst_vco);
|
|
};
|
|
|
|
struct clk *icst_clk_register(struct device *dev,
|
|
const struct clk_icst_desc *desc);
|