From 6e15a1492eca865a8ee82d3a2d3c27e145189af7 Mon Sep 17 00:00:00 2001 From: "Woodruff, Richard" Date: Fri, 10 Aug 2007 11:51:21 -0500 Subject: [PATCH] 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 --- include/asm-arm/arch-omap/clock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; -- 2.41.3