mirror of https://gitee.com/openkylin/linux.git
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);
|