From patchwork Mon Aug 8 19:14:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Rob Herring X-Patchwork-Id: 1046552 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p78JF2G8001242 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 8 Aug 2011 19:15:23 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QqVHd-00012b-VR; Mon, 08 Aug 2011 19:14:42 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QqVHd-0000VD-FY; Mon, 08 Aug 2011 19:14:41 +0000 Received: from mail-iy0-f171.google.com ([209.85.210.171]) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QqVHZ-0000Uq-Jp for linux-arm-kernel@lists.infradead.org; Mon, 08 Aug 2011 19:14:39 +0000 Received: by iyf13 with SMTP id 13so11578052iyf.16 for ; Mon, 08 Aug 2011 12:14:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:mime-version :content-type:content-transfer-encoding; bh=9b5++ZU5D+sz80xKSeMVUKCty5u0rd0dv04a6GDrOZ8=; b=YlIGV5ZDkPVsuHMuZXjIhg4lS0/JLgb/h7nHw/Ejb7Ple5e26YaVNBU8heL9gbb/3a +wNLKKkXsC0mJ8A6ofUhZFcfVlPY67fbr+DzbrFST3k0Ch1VvAP57cgXggICC5a4/bJt XuDw4S4WBhw7CPFlBfN8MEEj4ur8WDlS75IFs= Received: by 10.231.96.84 with SMTP id g20mr5931204ibn.99.1312830873140; Mon, 08 Aug 2011 12:14:33 -0700 (PDT) Received: from rob-laptop.i.smooth-stone.com ([173.226.190.126]) by mx.google.com with ESMTPS id t14sm4413650ibj.64.2011.08.08.12.14.31 (version=SSLv3 cipher=OTHER); Mon, 08 Aug 2011 12:14:32 -0700 (PDT) From: Rob Herring To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH] dmaengine: pl330: add missing include of scatterlist.h Date: Mon, 8 Aug 2011 14:14:26 -0500 Message-Id: <1312830866-2932-1-git-send-email-robherring2@gmail.com> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110808_151438_278161_2A8EE27A X-CRM114-Status: GOOD ( 11.07 ) X-Spam-Score: -0.7 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.210.171 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (robherring2[at]gmail.com) 0.1 FREEMAIL_ENVFROM_END_DIGIT Envelope-from freemail username ends in digit (robherring2[at]gmail.com) -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature 0.0 T_TO_NO_BRKTS_FREEMAIL To: misformatted and free email service Cc: Vinod Koul , Jassi Brar , Rob Herring X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 08 Aug 2011 19:15:23 +0000 (UTC) X-MIME-Autoconverted: from base64 to 8bit by demeter1.kernel.org id p78JF2G8001242 From: Rob Herring scatterlist.h was getting implicitly included and now is not which causes this compile error: drivers/dma/pl330.c: In function ‘pl330_prep_slave_sg’: drivers/dma/pl330.c:603:2: error: implicit declaration of function ‘for_each_sg’ Signed-off-by: Rob Herring Cc: Jassi Brar Cc: Vinod Koul Acked-by: Jassi Brar --- drivers/dma/pl330.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c index 00eee59..4e2ccde 100644 --- a/drivers/dma/pl330.c +++ b/drivers/dma/pl330.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include