From patchwork Tue Mar 13 06:33:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 7257 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 13A0923E00 for ; Tue, 13 Mar 2012 06:40:10 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id A0C2CA184F7 for ; Tue, 13 Mar 2012 06:40:09 +0000 (UTC) Received: by iage36 with SMTP id e36so498676iag.11 for ; Mon, 12 Mar 2012 23:40:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=VNy2J6AAe1eyG5Qf9TWOPsfW48hs7IapzaOGZDnVhV8=; b=CoWaGMfvjeKPdpg433ov4TpiOs6m7bmqfdiC6Chl6ezy1rn/RAhAUOQf2/JDiZtiXA JoQosIL0yf6y73JLYa2sg9KobGt5hApUhDc8znQoqruMCkdqDvh5UnM6GbKvEyNvxWC/ Q90AGMfjT3Wug4vUUP+ecXnEW/50fTHBUypNvG7rxqZyVgNrF3eiSt/g34QJdqjKhxnm b8r1hlhejRxMFXlt20SS/BZnF0Gr1q/lQBWDlHOdMO1nZW9BlE/xqH4/ogoXgzvuLOZl Ss8CuYn/IUzIVj8avMjSSLwufYXUA5KIhfin5QlbvCJoi8BOl40VXggz36ppTXC27DCd cdgQ== Received: by 10.50.158.133 with SMTP id wu5mr2610789igb.50.1331620809096; Mon, 12 Mar 2012 23:40:09 -0700 (PDT) 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.231.53.18 with SMTP id k18csp58680ibg; Mon, 12 Mar 2012 23:40:08 -0700 (PDT) Received: by 10.68.235.34 with SMTP id uj2mr5018417pbc.74.1331620808307; Mon, 12 Mar 2012 23:40:08 -0700 (PDT) Received: from mail-pz0-f50.google.com (mail-pz0-f50.google.com [209.85.210.50]) by mx.google.com with ESMTPS id e9si452646pbi.21.2012.03.12.23.40.07 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 12 Mar 2012 23:40:08 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by dakn40 with SMTP id n40so490222dak.37 for ; Mon, 12 Mar 2012 23:40:07 -0700 (PDT) Received: by 10.68.135.38 with SMTP id pp6mr4874337pbb.82.1331620807399; Mon, 12 Mar 2012 23:40:07 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id s10sm267105pbq.13.2012.03.12.23.40.04 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 12 Mar 2012 23:40:06 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Fix compilation warning in common.c Date: Tue, 13 Mar 2012 12:03:05 +0530 Message-Id: <1331620385-10877-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 X-Gm-Message-State: ALoCoQmSUJDeM0sH3ZiHe8aKgwLSgjh1XiENayKcfk0phGMUNGzulc0qO94vaPXHY+fndNe6s5Ar The following warning is fixed in common.c file: "warning: unused variable ‘ret’ [-Wunused-variable]" Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/common.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c index a6e6ad2..4610452 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -585,8 +585,6 @@ core_initcall(exynos_core_init); #ifdef CONFIG_CACHE_L2X0 static int __init exynos4_l2x0_cache_init(void) { - int ret; - if (soc_is_exynos5250()) return 0;