From patchwork Tue Apr 3 08:30:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 7578 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 9F13823E12 for ; Tue, 3 Apr 2012 08:41:05 +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 5621CA18305 for ; Tue, 3 Apr 2012 08:41:05 +0000 (UTC) Received: by iage36 with SMTP id e36so7569135iag.11 for ; Tue, 03 Apr 2012 01:41:04 -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=b8dlIYjLzmXqUsBtJ1YbXydwoVESkbscjQfHKXBf0Jc=; b=getUNZ5zUsW28SnOs4HDPFLRqlNQ5s6fXjUCf3KReIPm4UexB4bgY3IH/Xg+A4r+Ur 7kr7z/KZgRxC6vS2l+q3nI/iJdf9GUd3FPC2Y+kBsqmKilAbRXyI3GvmRONom1qxT4m5 oT2JfCF2Na3Yi9TN2XkBpIL+u4LpaQd6j28Cp6Y4n9jOknkJ9QPvPtdHu+6gnevgXTux DcDOxSM0w4Hl6f0ZEm19fpWOF79wb8UkC5xcRRvxhpAJWO+TYK9wXwN2QHkPLhtPUjmY 8zOdCJn9KB8w8KfILVFv8FhHmmJ51ZI+BfbHsJ/wwI8I/V3MRjl+6kjL9NZmeKQg+CzJ OIHQ== Received: by 10.42.155.9 with SMTP id s9mr6436291icw.51.1333442464787; Tue, 03 Apr 2012 01:41:04 -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.5.205 with SMTP id 13csp20137ibw; Tue, 3 Apr 2012 01:41:03 -0700 (PDT) Received: by 10.68.201.7 with SMTP id jw7mr27567312pbc.39.1333442462991; Tue, 03 Apr 2012 01:41:02 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id v9si9475433pbb.268.2012.04.03.01.41.02 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 03 Apr 2012 01:41:02 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.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 pbcxa12 with SMTP id xa12so5990851pbc.37 for ; Tue, 03 Apr 2012 01:41:02 -0700 (PDT) Received: by 10.68.216.229 with SMTP id ot5mr27198541pbc.148.1333442462663; Tue, 03 Apr 2012 01:41:02 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id z1sm15853979pbc.38.2012.04.03.01.41.00 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 03 Apr 2012 01:41:02 -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 compiler warning in dma.c file Date: Tue, 3 Apr 2012 14:00:41 +0530 Message-Id: <1333441841-2307-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: ALoCoQnWaXiTWm/qtFsPYFzjF5zItIrKHIQzg1dJOvtseCsN39KMsOmXq/BmJvwwGoRIB+venqow Fixes the following warning: 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 3983abe..69aaa45 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,