From patchwork Tue Jun 5 04:43:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 9106 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 DF2E323EB4 for ; Tue, 5 Jun 2012 04:54:37 +0000 (UTC) Received: from mail-ob0-f180.google.com (mail-ob0-f180.google.com [209.85.214.180]) by fiordland.canonical.com (Postfix) with ESMTP id 94E19A188B1 for ; Tue, 5 Jun 2012 04:54:37 +0000 (UTC) Received: by obbun3 with SMTP id un3so9753646obb.11 for ; Mon, 04 Jun 2012 21:54:37 -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=zZcC8EGvUN3i0z7YeZZkw7r1mlQmqu0LhZW/EH/hznI=; b=A+NvMaRwoiAW1UH/Y+6+dmA5VOA5NCUkWcFaz0LqOJaCT8nHXnqmhK8pqiilHRTzs3 IRtvtwAJAqGFl4I0oS5v5D3SuGpzvobkplheyVDWw6mYsuCn5Q9WikXzqwTfPa+R2YmS RC06tKOA3uk35TNFp1P4fux4KTPsKONqdvZT01uxEuUj+oOI8CAgNlClREonrExsq5Lt o4g9ZOjZNpXtt8PURO6ZmgzJQm2wmL56SEImmKbgj1iXg3o5SEr4Jwmx8GPenrkhIeyB IV8fGflepU3uN+2eeKE5SYq5sYtthQrNQWxM34J+UQNXOsyOSHTIhSsH2GWw4Jl5drhe Tvig== Received: by 10.50.46.232 with SMTP id y8mr654427igm.57.1338872076919; Mon, 04 Jun 2012 21:54:36 -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.24.148 with SMTP id v20csp3902ibb; Mon, 4 Jun 2012 21:54:36 -0700 (PDT) Received: by 10.68.134.163 with SMTP id pl3mr32212631pbb.167.1338872076258; Mon, 04 Jun 2012 21:54:36 -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 pu10si943263pbb.239.2012.06.04.21.54.35 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 04 Jun 2012 21:54:36 -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 danh15 with SMTP id h15so7964346dan.37 for ; Mon, 04 Jun 2012 21:54:35 -0700 (PDT) Received: by 10.68.238.68 with SMTP id vi4mr46063093pbc.123.1338872075824; Mon, 04 Jun 2012 21:54:35 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id vc6sm1060110pbc.6.2012.06.04.21.54.32 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 04 Jun 2012 21:54:35 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, jaswinder.singh@linaro.org, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/1] ARM: S5PC100: Remove unused variable in dma.c file Date: Tue, 5 Jun 2012 10:13:35 +0530 Message-Id: <1338871415-24956-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: ALoCoQlAaa79NLjPgzlrsdBXMkmSU1qyPaloMkDJDN2F3KJuQ2mp8y9kZ7Ac6ZbLWRvUwwD9WKWy Fixes the following warning: arch/arm/mach-s5pc100/dma.c:36:12: warning: ‘dma_dmamask’ defined but not used [-Wunused-variable] Signed-off-by: Sachin Kamat --- arch/arm/mach-s5pc100/dma.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-s5pc100/dma.c b/arch/arm/mach-s5pc100/dma.c index afd8db2..b141840 100644 --- a/arch/arm/mach-s5pc100/dma.c +++ b/arch/arm/mach-s5pc100/dma.c @@ -33,8 +33,6 @@ #include #include -static u64 dma_dmamask = DMA_BIT_MASK(32); - static u8 pdma0_peri[] = { DMACH_UART0_RX, DMACH_UART0_TX,