diff options
author | Andrew Morton | 2006-12-27 23:36:37 +0100 |
---|---|---|
committer | Stefan Richter | 2007-03-09 22:02:35 +0100 |
commit | cf3e72fd85092bf7246c8266aff293c50e99b990 (patch) | |
tree | 8fb1f3a7b48a989aeec6da98841aa537daf11bc3 | |
parent | firewire: printk warning fix (diff) | |
download | kernel-qcow2-linux-cf3e72fd85092bf7246c8266aff293c50e99b990.tar.gz kernel-qcow2-linux-cf3e72fd85092bf7246c8266aff293c50e99b990.tar.xz kernel-qcow2-linux-cf3e72fd85092bf7246c8266aff293c50e99b990.zip |
firewire: build fix
alpha:
drivers/firewire/fw-ohci.c: In function 'ar_context_tasklet':
drivers/firewire/fw-ohci.c:266: warning: implicit declaration of function 'dma_sync_single_for_device'
drivers/firewire/fw-ohci.c:267: error: 'DMA_TO_DEVICE' undeclared (first use in this function)
drivers/firewire/fw-ohci.c:267: error: (Each undeclared identifier is reported only once
drivers/firewire/fw-ohci.c:267: error: for each function it appears in.)
drivers/firewire/fw-ohci.c: In function 'ar_context_init':
drivers/firewire/fw-ohci.c:282: warning: implicit declaration of function 'dma_map_single'
drivers/firewire/fw-ohci.c:283: error: 'DMA_TO_DEVICE' undeclared (first use in this function)
drivers/firewire/fw-ohci.c:293: error: 'DMA_FROM_DEVICE' undeclared (first use in this function)
etc.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
-rw-r--r-- | drivers/firewire/fw-ohci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/firewire/fw-ohci.c b/drivers/firewire/fw-ohci.c index b046b0711e13..5d42d18bd455 100644 --- a/drivers/firewire/fw-ohci.c +++ b/drivers/firewire/fw-ohci.c @@ -25,6 +25,8 @@ #include <linux/pci.h> #include <linux/delay.h> #include <linux/poll.h> +#include <linux/dma-mapping.h> + #include <asm/uaccess.h> #include <asm/semaphore.h> |