All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: SAMSUNG: Silence empty switch warning in sdhci.h
@ 2013-02-06  6:19 Sachin Kamat
  2013-02-06  6:19 ` [PATCH 2/2] ARM: SAMSUNG: Silence empty switch warning in fimc-core.h Sachin Kamat
  2013-02-12 18:29 ` [PATCH 1/2] ARM: SAMSUNG: Silence empty switch warning in sdhci.h Kukjin Kim
  0 siblings, 2 replies; 3+ messages in thread
From: Sachin Kamat @ 2013-02-06  6:19 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: kgene.kim, sachin.kamat, patches

Add 'default' case to silence the following warning:
arch/arm/plat-samsung/include/plat/sdhci.h:356:9: warning: switch with no cases

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/plat-samsung/include/plat/sdhci.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/arm/plat-samsung/include/plat/sdhci.h b/arch/arm/plat-samsung/include/plat/sdhci.h
index 151cc91..9b87f38 100644
--- a/arch/arm/plat-samsung/include/plat/sdhci.h
+++ b/arch/arm/plat-samsung/include/plat/sdhci.h
@@ -374,6 +374,8 @@ static inline void s3c_sdhci_setname(int id, char *name)
 		s3c_device_hsmmc3.name = name;
 		break;
 #endif
+	default:
+		break;
 	}
 }
 
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-02-12 18:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-06  6:19 [PATCH 1/2] ARM: SAMSUNG: Silence empty switch warning in sdhci.h Sachin Kamat
2013-02-06  6:19 ` [PATCH 2/2] ARM: SAMSUNG: Silence empty switch warning in fimc-core.h Sachin Kamat
2013-02-12 18:29 ` [PATCH 1/2] ARM: SAMSUNG: Silence empty switch warning in sdhci.h Kukjin Kim

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.