aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSachin Kamat <[email protected]>2013-02-12 10:27:55 -0800
committerKukjin Kim <[email protected]>2013-02-12 10:27:55 -0800
commit12ebb8ff767e530c5a8c88bd42531554a27672d9 (patch)
tree0058b23ca8e5c56dd32f3cd9e629eab90ae41ea0
parent8d67ec8605f15256b3675d23cb729f253c4e3b03 (diff)
ARM: SAMSUNG: Silence empty switch warning in fimc-core.h
Add 'default' case to silence the below warning: arch/arm/plat-samsung/include/plat/fimc-core.h:25:9: warning: switch with no cases Signed-off-by: Sachin Kamat <[email protected]> Signed-off-by: Kukjin Kim <[email protected]>
-rw-r--r--arch/arm/plat-samsung/include/plat/fimc-core.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/include/plat/fimc-core.h b/arch/arm/plat-samsung/include/plat/fimc-core.h
index 945a99d59563..1d6cb2b8b094 100644
--- a/arch/arm/plat-samsung/include/plat/fimc-core.h
+++ b/arch/arm/plat-samsung/include/plat/fimc-core.h
@@ -43,6 +43,8 @@ static inline void s3c_fimc_setname(int id, char *name)
s5p_device_fimc3.name = name;
break;
#endif
+ default:
+ break;
}
}