mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 20:16:43 +07:00
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);
|