summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilesh C V <silesh@ti.com>2010-10-04 19:57:21 +0530
committerSebastien Jan <s-jan@ti.com>2010-11-03 15:58:00 +0100
commitbf57faa8e844baf032fd60870e6a0091c964b52c (patch)
treefabb6b478f046b2aa9f53bb59c31ee19cb382f21
parent227409b7188491653e71e86c7dfccbaca0e4ef7d (diff)
omap4: kill compile warning
Kill this compile warning: CC arch/arm/plat-omap/cpu-omap.o arch/arm/plat-omap/cpu-omap.c:47: warning: "CONFIG_ARCH_OMAP3" is not defined Signed-off-by: Silesh C V <silesh@ti.com>
-rw-r--r--arch/arm/plat-omap/cpu-omap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/cpu-omap.c b/arch/arm/plat-omap/cpu-omap.c
index c712444ddb41..07ab5f55373e 100644
--- a/arch/arm/plat-omap/cpu-omap.c
+++ b/arch/arm/plat-omap/cpu-omap.c
@@ -44,7 +44,7 @@ static struct cpufreq_frequency_table *freq_table;
#ifdef CONFIG_ARCH_OMAP1
#define MPU_CLK "mpu"
-#elif CONFIG_ARCH_OMAP3
+#elif defined(CONFIG_ARCH_OMAP3)
#define MPU_CLK "arm_fck"
#else
#define MPU_CLK "virt_prcm_set"