diff options
author | Andrew Morton <[email protected]> | 2007-09-18 22:46:19 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2007-09-19 11:24:16 -0700 |
commit | 3558c9b3232b5f0fd9f32043a191eca20fca64c6 (patch) | |
tree | a3906199d92073f56c13b57884c816a164db184a | |
parent | c2f828977ba5d17c13debba374ea252d18e5ccfb (diff) |
Fix "Fix DAC960 driver on machines which don't support 64-bit DMA"
sparc32:
drivers/block/DAC960.c: In function 'DAC960_V1_EnableMemoryMailboxInterface':
drivers/block/DAC960.c:1168: error: 'DMA_32BIT_MASK' undeclared (first use in this function)
drivers/block/DAC960.c:1168: error: (Each undeclared identifier is reported only
Cc: <[email protected]>
Cc: <[email protected]>
Cc: Alessandro Polverini <[email protected]>
Cc: Jeff Garzik <[email protected]>
Cc: Matthew Wilcox <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/block/DAC960.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/DAC960.c b/drivers/block/DAC960.c index 504a95d888b2..84d6aa500e26 100644 --- a/drivers/block/DAC960.c +++ b/drivers/block/DAC960.c @@ -31,6 +31,7 @@ #include <linux/genhd.h> #include <linux/hdreg.h> #include <linux/blkpg.h> +#include <linux/dma-mapping.h> #include <linux/interrupt.h> #include <linux/ioport.h> #include <linux/mm.h> |