mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-26 03:59:17 +07:00
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_ */
|