From: Woodruff, Richard Date: Fri, 10 Aug 2007 16:51:21 +0000 (-0500) Subject: Fix omap2430 clock build error X-Git-Tag: v2.6.23-omap1~231 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=6e15a1492eca865a8ee82d3a2d3c27e145189af7;p=linux-2.6-omap-h63xx.git 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: Richard Woodruff Signed-off-by: Tony Lindgren --- diff --git a/include/asm-arm/arch-omap/clock.h b/include/asm-arm/arch-omap/clock.h index c81f0d0f4a3..2aeca561c66 100644 --- a/include/asm-arm/arch-omap/clock.h +++ b/include/asm-arm/arch-omap/clock.h @@ -34,7 +34,7 @@ struct clk { void (*init)(struct clk *); int (*enable)(struct clk *); void (*disable)(struct clk *); -#if defined(CONFIG_ARCH_OMAP2420) +#if defined(CONFIG_ARCH_OMAP2) u8 fixed_div; #endif };