• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/mach-bcm63xx/
1#ifndef BCM63XX_CLK_H_
2#define BCM63XX_CLK_H_
3
4struct clk {
5	void		(*set)(struct clk *, int);
6	unsigned int	rate;
7	unsigned int	usage;
8	int		id;
9};
10
11#endif /* ! BCM63XX_CLK_H_ */
12