Commit 6e15a149 authored by Woodruff, Richard's avatar Woodruff, Richard Committed by Tony Lindgren

Fix omap2430 clock build error

This fixes a build error for 2430.  fixed_div is under a 2420 only define and it should be OMAP2.
Signed-off-by: default avatarRichard Woodruff <r-woodruff2@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 51327f70
...@@ -34,7 +34,7 @@ struct clk { ...@@ -34,7 +34,7 @@ struct clk {
void (*init)(struct clk *); void (*init)(struct clk *);
int (*enable)(struct clk *); int (*enable)(struct clk *);
void (*disable)(struct clk *); void (*disable)(struct clk *);
#if defined(CONFIG_ARCH_OMAP2420) #if defined(CONFIG_ARCH_OMAP2)
u8 fixed_div; u8 fixed_div;
#endif #endif
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment