From patchwork Tue Jun 5 04:38:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 9105 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 C7D7C23DEB for ; Tue, 5 Jun 2012 04:49:12 +0000 (UTC) Received: from mail-yw0-f52.google.com (mail-yw0-f52.google.com [209.85.213.52]) by fiordland.canonical.com (Postfix) with ESMTP id 8376DA180AD for ; Tue, 5 Jun 2012 04:49:12 +0000 (UTC) Received: by yhpp61 with SMTP id p61so3997236yhp.11 for ; Mon, 04 Jun 2012 21:49:12 -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=xVrTdU6F20eI9tXg0wc4OBerzyZx131peWcJLif2v2Y=; b=geR9WpKizJF1X0xIet9pAEZIg+pIsoYfLXnxukvNcLX/XoRkEPj4w9W9E5p+ikdtB7 GC8AAkQFl3eKe9yke0xzErS3v09wDnSr42hEGqKW3qekW8tDWLWubj9dJCz4T4t8xjE1 2YLaLjr5hGqrQRt+02yAGXQEvko5Hyx8mwZDbLu+3aF8hBY6Bdi8rT1cGycUjIeAVZNF 97BUxdyDzRDxXze7qj7yUB1V1PzfGryUFnd90e76ntRWbnQD2h3C23avmfaDxNGzBgLX zdnHvflQ4ryKlSswHyIfzkRTytszTMZdxRhDnG5jG+xzQqd+2nLDjkK1WnAufuFbwSPl fERw== Received: by 10.50.87.227 with SMTP id bb3mr645232igb.57.1338871751751; Mon, 04 Jun 2012 21:49:11 -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 v20csp3794ibb; Mon, 4 Jun 2012 21:49:10 -0700 (PDT) Received: by 10.68.227.195 with SMTP id sc3mr46523225pbc.104.1338871750607; Mon, 04 Jun 2012 21:49:10 -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 qn6si935345pbc.195.2012.06.04.21.49.10 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 04 Jun 2012 21:49:10 -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 pbbrr4 with SMTP id rr4so8137008pbb.37 for ; Mon, 04 Jun 2012 21:49:10 -0700 (PDT) Received: by 10.68.189.65 with SMTP id gg1mr35068234pbc.10.1338871750314; Mon, 04 Jun 2012 21:49:10 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id oo6sm1038816pbc.22.2012.06.04.21.49.06 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 04 Jun 2012 21:49:09 -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: S5P64X0: Remove unused variable in dma.c file Date: Tue, 5 Jun 2012 10:08:08 +0530 Message-Id: <1338871088-15668-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: ALoCoQk2i+Jl4T7lgTagMtmWL+PQGPbfcuExeULS8U5DRse6Jdu00pEA7COYG4eFoNm+u8nXLo7E Fixes the following warning: arch/arm/mach-s5p64x0/dma.c:39:12: warning: ‘dma_dmamask’ defined but not used [-Wunused-variable] Signed-off-by: Sachin Kamat --- arch/arm/mach-s5p64x0/dma.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-s5p64x0/dma.c b/arch/arm/mach-s5p64x0/dma.c index 2ee5dc0..9c4ce08 100644 --- a/arch/arm/mach-s5p64x0/dma.c +++ b/arch/arm/mach-s5p64x0/dma.c @@ -36,8 +36,6 @@ #include #include -static u64 dma_dmamask = DMA_BIT_MASK(32); - static u8 s5p6440_pdma_peri[] = { DMACH_UART0_RX, DMACH_UART0_TX,