From mboxrd@z Thu Jan 1 00:00:00 1970 From: robherring2@gmail.com (Rob Herring) Date: Mon, 8 Aug 2011 14:14:26 -0500 Subject: [PATCH] dmaengine: pl330: add missing include of scatterlist.h Message-ID: <1312830866-2932-1-git-send-email-robherring2@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org 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 --- 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 -- 1.7.4.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752544Ab1HHTOe (ORCPT ); Mon, 8 Aug 2011 15:14:34 -0400 Received: from mail-iy0-f170.google.com ([209.85.210.170]:56382 "EHLO mail-iy0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752139Ab1HHTOd (ORCPT ); Mon, 8 Aug 2011 15:14:33 -0400 From: Rob Herring To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Rob Herring , Jassi Brar , Vinod Koul 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 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- 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 -- 1.7.4.1