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: 2102211 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 5D5A5DFE82 for ; Wed, 6 Feb 2013 06:28:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751985Ab3BFG2y (ORCPT ); Wed, 6 Feb 2013 01:28:54 -0500 Received: from mail-pa0-f41.google.com ([209.85.220.41]:61520 "EHLO mail-pa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751088Ab3BFG2x (ORCPT ); Wed, 6 Feb 2013 01:28:53 -0500 Received: by mail-pa0-f41.google.com with SMTP id fb11so621539pad.0 for ; Tue, 05 Feb 2013 22:28:53 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=n0j/10IjSdJLbYba90N5HsyMVpWqo7twP2JtNQzyiVc=; b=UFBm9P7G6XFOpgDnVDT3Is4ViUzxkO35V6Lc1vqn+VMSAjaaOs/FK6LfDbvhISt7qy r8zm9mnt8/gUzt4ZdX9iLiAG+FXCvgMlBzw/60Weo/YQhyLf075hRDrYabTyk++S5q2k RIa2X/VcvL+vhJGbDefWUQ+yscfPw/OTiaIN5SiufweBgxTcOlfkKd1RPYKQhkOEIaaF LmMZwDNKDi3Qlw0k/PudIve6LKJMX7Qt+w7Ei4IZKGyuNRGWMR2I4HN4cd6CHFw+pPRO WsDo1djTQvAdRd3lb/f24Ptzy7bAIzcT/XWua0L+eBxjKWyUEVbECWNkJXvnmhld+w3N xW2w== 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: ALoCoQnchqvq/5gxGird9PCRCeZSkAWXC+hXtFAoYNfJ7A+BfMTDPqRCUivzAp77WjKYluNuerxs Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org 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; } }