diff options
author | Frank Lichtenheld <frank@lichtenheld.de> | 2007-07-17 19:30:38 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:53:29 -0700 |
commit | bec85e8031f7d390643df27e74f8bc9715bb8224 (patch) | |
tree | dff6fe65158b7607e6749200f753880ff25ea0d0 /drivers | |
parent | 3bd858ab1c451725c07a805dcb315215dc85b86e (diff) |
hppb: Add missing dma-mapping.h include
This fixes the following build-error:
CC drivers/parisc/hppb.o
drivers/parisc/hppb.c: In function ‘hppb_probe’:
drivers/parisc/hppb.c:73: error: implicit declaration of function ‘ccio_request_resource’
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/parisc/hppb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/parisc/hppb.c b/drivers/parisc/hppb.c index a68b3b3761a2..a728a7cd2fc8 100644 --- a/drivers/parisc/hppb.c +++ b/drivers/parisc/hppb.c @@ -16,6 +16,7 @@ #include <linux/init.h> #include <linux/mm.h> #include <linux/slab.h> +#include <linux/dma-mapping.h> #include <linux/ioport.h> #include <asm/io.h> |