blob: 8fcf8df4418a822670160ccfd4bad98859822921 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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_ */
|