From patchwork Wed Feb 6 06:19:26 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 14580 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 3DA6C24261 for ; Wed, 6 Feb 2013 06:28:56 +0000 (UTC) Received: from mail-vc0-f173.google.com (mail-vc0-f173.google.com [209.85.220.173]) by fiordland.canonical.com (Postfix) with ESMTP id CBA10A18A0A for ; Wed, 6 Feb 2013 06:28:55 +0000 (UTC) Received: by mail-vc0-f173.google.com with SMTP id fy7so633328vcb.4 for ; Tue, 05 Feb 2013 22:28:55 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=n0j/10IjSdJLbYba90N5HsyMVpWqo7twP2JtNQzyiVc=; b=EEyiEftOhyATHOASOq4//47DzmqWWQ4I+id7qvPCRlCRGc+/LnDUKQBXSZRGYwLn84 GOOUi5tjp7Vt82sODVXbJ/vMAplBTsiCgR81kiATy9iDv1oFrEtnfi/9UrvC+cvQeM1T SVSE2GiwBomZEXkp0isw8t9xyrGb7sTncNPwtEl75l+GG/TTGDzj9LHhP10g3oD9/HMV 8wgg7mMcqqX+Cg5xxRwHx21YBVCRdE2Zh+jbE1mm1mH2EGT7y2V6uzMenppyI90YVja3 ppNMC57aB1yDKKNQ3A71Y3QYTM+t/mPXoIboRsG48ncntXb3bp+O7X0jYIZcE3in7Nih 4ydw== X-Received: by 10.59.7.65 with SMTP id da1mr27256949ved.4.1360132135299; Tue, 05 Feb 2013 22:28:55 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.252.8 with SMTP id zo8csp3054vec; Tue, 5 Feb 2013 22:28:54 -0800 (PST) X-Received: by 10.50.47.168 with SMTP id e8mr3853065ign.50.1360132133771; Tue, 05 Feb 2013 22:28:53 -0800 (PST) Received: from mail-pa0-f43.google.com (mail-pa0-f43.google.com [209.85.220.43]) by mx.google.com with ESMTPS id y9si27163676paw.333.2013.02.05.22.28.53 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Feb 2013 22:28:53 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.43 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.220.43; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.43 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pa0-f43.google.com with SMTP id bh2so617260pad.16 for ; Tue, 05 Feb 2013 22:28:53 -0800 (PST) X-Received: by 10.66.87.8 with SMTP id t8mr72560493paz.28.1360132133031; Tue, 05 Feb 2013 22:28:53 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id l8sm35221279pax.9.2013.02.05.22.28.48 (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 05 Feb 2013 22:28:52 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/2] ARM: SAMSUNG: Silence empty switch warning in sdhci.h Date: Wed, 6 Feb 2013 11:49:26 +0530 Message-Id: <1360131567-583-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQm2eHgZOptYF+ZjFXi+R0JU8blRSg5wwhKtL4y5h6b5sRO6klDXrr1aN6fegQ7pUCYylN9B 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 --- 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; } }