From 08a999ce69c17802d92ad760faa21ce112968172 Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Fri, 1 Jul 2011 16:07:32 -0400 Subject: [PATCH] drivers/base: dma-coherent.c is a module and needs module.h It was implicitly getting it before, but it will break compiles once we fix that. Signed-off-by: Paul Gortmaker --- drivers/base/dma-coherent.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/base/dma-coherent.c b/drivers/base/dma-coherent.c index f369e2795985..bb0025c510b3 100644 --- a/drivers/base/dma-coherent.c +++ b/drivers/base/dma-coherent.c @@ -4,6 +4,7 @@ */ #include #include +#include #include struct dma_coherent_mem { -- 2.39.2