From patchwork Mon Apr 9 04:26:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 7692 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 9B33523E29 for ; Mon, 9 Apr 2012 04:34:59 +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 5C00FA1849C for ; Mon, 9 Apr 2012 04:34:59 +0000 (UTC) Received: by iage36 with SMTP id e36so7636937iag.11 for ; Sun, 08 Apr 2012 21:34:58 -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=luXBT9wpKpVz/uRyJaB/QU42pIgiSjPVgZ3WrzD3zfQ=; b=VRGRniJs+o4lSR2JaKdPEKBloH30vRX6N0d1blPRxccM0PJZaA3biOUtGifeObxw8y zUJLQQmIg6vNFKIey+2u0mQgiSkhX4qBq5tAnX8j1SQB6uiMOpM82iaCyi0IuQ/4XB1o F/NKc7ymPEjkHoObqbq5MUGEl1+CiCc8LBVqh8v+033hUCttDbqqaEpx0eYWHBmLyZVS XykZ/C9WkF4PO6oxTq8S1bD3pP0rGHOAvaUXkCmKHnTAAUZHddLQsk8tdIoXTDU4LZyU SDuOfYey7T6F4o41d6gDUbDhiLs37y+5JBRj4J8aJwyFFObe3IEfcvTrZX2fwYrf+t2I VABg== Received: by 10.50.156.229 with SMTP id wh5mr3957619igb.28.1333946098697; Sun, 08 Apr 2012 21:34:58 -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.164.217 with SMTP id f25csp107671iby; Sun, 8 Apr 2012 21:34:58 -0700 (PDT) Received: by 10.68.200.137 with SMTP id js9mr16139577pbc.110.1333946097977; Sun, 08 Apr 2012 21:34:57 -0700 (PDT) Received: from mail-pz0-f44.google.com (mail-pz0-f44.google.com [209.85.210.44]) by mx.google.com with ESMTPS id rm10si1931381pbc.56.2012.04.08.21.34.57 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 08 Apr 2012 21:34:57 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.210.44 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.210.44; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.44 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by dadz14 with SMTP id z14so16616779dad.17 for ; Sun, 08 Apr 2012 21:34:57 -0700 (PDT) Received: by 10.68.129.99 with SMTP id nv3mr5482831pbb.153.1333946097301; Sun, 08 Apr 2012 21:34:57 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id s7sm13803471pbl.31.2012.04.08.21.34.54 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 08 Apr 2012 21:34:56 -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: S5PV210: Fix compiler warning in dma.c file Date: Mon, 9 Apr 2012 09:56:37 +0530 Message-Id: <1333945597-28243-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: ALoCoQnKuOYEE/rOyw1KbKnYbF9hE+g59+bdNFmWg/Hps4IIZG/+1fTaxNqe3xl4s9TNarl9X9kM Fixes the following warning: warning: ‘dma_dmamask’ defined but not used [-Wunused-variable] Signed-off-by: Sachin Kamat --- arch/arm/mach-s5pv210/dma.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-s5pv210/dma.c b/arch/arm/mach-s5pv210/dma.c index 86ce62f..b8337e2 100644 --- a/arch/arm/mach-s5pv210/dma.c +++ b/arch/arm/mach-s5pv210/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,