mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 06:06:42 +07:00
e7300d04bd
Signed-off-by: Maxime Bizon <mbizon@freebox.fr> Signed-off-by: Florian Fainelli <florian@openwrt.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
12 lines
179 B
C
12 lines
179 B
C
#ifndef BCM63XX_CLK_H_
|
|
#define BCM63XX_CLK_H_
|
|
|
|
struct clk {
|
|
void (*set)(struct clk *, int);
|
|
unsigned int rate;
|
|
unsigned int usage;
|
|
int id;
|
|
};
|
|
|
|
#endif /* ! BCM63XX_CLK_H_ */
|