summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2011-11-10 12:12:55 -0800
committerTony Lindgren <tony@atomide.com>2011-11-10 12:12:55 -0800
commit7be620f79714b6598275bd5c71d89bb24dfe332e (patch)
tree541209fc1363afdbc42c11c0c94b88dae202ba43 /arch
parent5bb01a991897d74295ff8de548d350400d7370a9 (diff)
downloadlinux-7be620f79714b6598275bd5c71d89bb24dfe332e.tar.gz
linux-7be620f79714b6598275bd5c71d89bb24dfe332e.tar.bz2
linux-7be620f79714b6598275bd5c71d89bb24dfe332e.zip
ARM: OMAP: Fix dpll_data compile error when omap2 only is selected
Without this patch we get the following error: arch/arm/mach-omap2/clkt_dpll.c: In function '_dpll_test_fint': arch/arm/mach-omap2/clkt_dpll.c:98: error: 'struct dpll_data' has no member named 'flags' Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/plat-omap/include/plat/clock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/include/plat/clock.h b/arch/arm/plat-omap/include/plat/clock.h
index 197ca03c3f7d..eb73ab40e955 100644
--- a/arch/arm/plat-omap/include/plat/clock.h
+++ b/arch/arm/plat-omap/include/plat/clock.h
@@ -165,8 +165,8 @@ struct dpll_data {
u8 auto_recal_bit;
u8 recal_en_bit;
u8 recal_st_bit;
- u8 flags;
# endif
+ u8 flags;
};
#endif