bcm63xx_clk.h 179 B

1234567891011
  1. #ifndef BCM63XX_CLK_H_
  2. #define BCM63XX_CLK_H_
  3. struct clk {
  4. void (*set)(struct clk *, int);
  5. unsigned int rate;
  6. unsigned int usage;
  7. int id;
  8. };
  9. #endif /* ! BCM63XX_CLK_H_ */