diff options
Diffstat (limited to 'arch/arm/plat-omap/include/plat/clock.h')
| -rw-r--r-- | arch/arm/plat-omap/include/plat/clock.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/include/plat/clock.h b/arch/arm/plat-omap/include/plat/clock.h index eb73ab40e95..240a7b9fd94 100644 --- a/arch/arm/plat-omap/include/plat/clock.h +++ b/arch/arm/plat-omap/include/plat/clock.h @@ -59,6 +59,8 @@ struct clkops {  #define RATE_IN_4430		(1 << 5)  #define RATE_IN_TI816X		(1 << 6)  #define RATE_IN_4460		(1 << 7) +#define RATE_IN_AM33XX		(1 << 8) +#define RATE_IN_TI814X		(1 << 9)  #define RATE_IN_24XX		(RATE_IN_242X | RATE_IN_243X)  #define RATE_IN_34XX		(RATE_IN_3430ES1 | RATE_IN_3430ES2PLUS) @@ -84,7 +86,7 @@ struct clkops {  struct clksel_rate {  	u32			val;  	u8			div; -	u8			flags; +	u16			flags;  };  /**  |