From patchwork Wed Feb 6 06:19:27 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2102221 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 1006EDFE82 for ; Wed, 6 Feb 2013 06:28:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752019Ab3BFG25 (ORCPT ); Wed, 6 Feb 2013 01:28:57 -0500 Received: from mail-da0-f42.google.com ([209.85.210.42]:55805 "EHLO mail-da0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751088Ab3BFG25 (ORCPT ); Wed, 6 Feb 2013 01:28:57 -0500 Received: by mail-da0-f42.google.com with SMTP id z17so472145dal.1 for ; Tue, 05 Feb 2013 22:28:56 -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:in-reply-to :references:x-gm-message-state; bh=MGCMuE9YUoxnOQXnok1DxMnhAMcbheb7+kFLlaC35mc=; b=piYTRoizXYXnr+Yw1VPu9ETnBjXbFT+V7FYOZHawboFiQgv6ZBLbsjz+baoAjX1jC9 y0XDT9BcjwqaSfh4J0pDxUgIaOaaEl+DDl9vV1Jc8FcasiqbSzex/sWej8NdE8udFJqg yf/ETJInrAJ9G2cMZt8L9C3R/M7QtP9yLkfYP5kgO8+fmf6844s1+5gyl0Ok7WAYT/Ja OZVyLwkvY54c7FzYVBx9O1dSt7aFZD2tiNNWvG9Vy8vn15BI750XTUmpGMnSuHLxR4Pk 83tPxbcCPm5f/4h5H+wGV5f9KLuMryvR6/WBtMcQ6eLS+SMUZrr5Ay5VREEvp3t/AHYQ XHmQ== X-Received: by 10.66.73.164 with SMTP id m4mr72627308pav.12.1360132136472; Tue, 05 Feb 2013 22:28:56 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id l8sm35221279pax.9.2013.02.05.22.28.53 (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 05 Feb 2013 22:28:55 -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 2/2] ARM: SAMSUNG: Silence empty switch warning in fimc-core.h Date: Wed, 6 Feb 2013 11:49:27 +0530 Message-Id: <1360131567-583-2-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1360131567-583-1-git-send-email-sachin.kamat@linaro.org> References: <1360131567-583-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQmVNntYkZ2qB/evD+iBDEnnv52RPTQTnbi2LF6Qrh39OADJhuXZsA2hjBxR6vGywGMP2U65 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 below warning: arch/arm/plat-samsung/include/plat/fimc-core.h:25:9: warning: switch with no cases Signed-off-by: Sachin Kamat --- arch/arm/plat-samsung/include/plat/fimc-core.h | 2 ++ 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 945a99d..1d6cb2b 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; } }