From patchwork Tue Mar 13 06:40:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 7258 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 2157623E00 for ; Tue, 13 Mar 2012 06:47:28 +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 D7BBEA184F9 for ; Tue, 13 Mar 2012 06:47:27 +0000 (UTC) Received: by iage36 with SMTP id e36so508495iag.11 for ; Mon, 12 Mar 2012 23:47:27 -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=uhIbLT/a/b4ZlTWH0CJ+qi4ZS+4To1xy6XwscctGmfE=; b=HrLk4AZQwq2yDGIxJng1d1NEWkyQMSqcwVnQ8jm6o0xuT88wwIJrMg9BTJ0L5NuRkD FxGc23Pwr5JQBoenA7Lfyuz0JbynzZ4rKAYiOKwX1QCsDdN1xg8go3uOIjrz1OMOkq0G 4YRZOaqla05cJ8uj8Eder0vsoS/EMlCrTsiWq4SIyFuEpt5JAx2VjTNjdzhwa5KqrSfd DZFwpdl5ydPaiSlwsXYdc6mACq2CIogXZQI2nbwpF/xmXTYl81F6usn6ScxiAzFsQJqO ngF2P9hBkBYprE+J87jJYdCOLlCg9zM67I/3rp8mYmnVanKt2JgO+e21mSQWBHJJ2KQW Xs2g== Received: by 10.50.159.135 with SMTP id xc7mr2620062igb.50.1331621247332; Mon, 12 Mar 2012 23:47:27 -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 k18csp58759ibg; Mon, 12 Mar 2012 23:47:26 -0700 (PDT) Received: by 10.68.193.138 with SMTP id ho10mr4901107pbc.80.1331621246679; Mon, 12 Mar 2012 23:47:26 -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 x9si435566pbg.209.2012.03.12.23.47.26 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 12 Mar 2012 23:47:26 -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 n40so500520dak.37 for ; Mon, 12 Mar 2012 23:47:26 -0700 (PDT) Received: by 10.68.132.40 with SMTP id or8mr4960010pbb.34.1331621246264; Mon, 12 Mar 2012 23:47:26 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id z10sm265902pbq.55.2012.03.12.23.47.23 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 12 Mar 2012 23:47:25 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: jaswinder.singh@linaro.org, kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Fix compilation warning in dma.c Date: Tue, 13 Mar 2012 12:10:12 +0530 Message-Id: <1331620812-10982-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: ALoCoQmq+SG5y19o71vT+3lO3m6U1hdthM51aplphG8UogjOCvSHNmabOTbdf2vodguyb6g6dQKD The following warning is fixed in dma.c file: "warning: ‘dma_dmamask’ defined but not used [-Wunused-variable]" Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/dma.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-exynos/dma.c b/arch/arm/mach-exynos/dma.c index 13607c4..d3ed1fb 100644 --- a/arch/arm/mach-exynos/dma.c +++ b/arch/arm/mach-exynos/dma.c @@ -35,8 +35,6 @@ #include #include -static u64 dma_dmamask = DMA_BIT_MASK(32); - static u8 exynos4210_pdma0_peri[] = { DMACH_PCM0_RX, DMACH_PCM0_TX,