diff options
author | Domen Puncer | 2005-06-27 00:22:14 +0200 |
---|---|---|
committer | Jeff Garzik | 2005-06-27 00:22:14 +0200 |
commit | 1e7f0bd8c8f2d0496ad338be5e69ff4395d77da4 (patch) | |
tree | 8754be18382901e6143083fa8d7c7d8a76081407 /drivers/net/ns83820.c | |
parent | [PATCH] arlan: module parameter fixes (diff) | |
download | kernel-qcow2-linux-1e7f0bd8c8f2d0496ad338be5e69ff4395d77da4.tar.gz kernel-qcow2-linux-1e7f0bd8c8f2d0496ad338be5e69ff4395d77da4.tar.xz kernel-qcow2-linux-1e7f0bd8c8f2d0496ad338be5e69ff4395d77da4.zip |
drivers/net/: Use the DMA_{64,32}BIT_MASK constants
Use the DMA_{64,32}BIT_MASK constants from dma-mapping.h when calling
pci_set_dma_mask() or pci_set_consistent_dma_mask()
This patch includes dma-mapping.h explicitly because it caused errors
on some architectures otherwise.
See http://marc.theaimsgroup.com/?t=108001993000001&r=1&w=2 for details
Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch>
Signed-off-by: Domen Puncer <domen@coderock.org>
Diffstat (limited to 'drivers/net/ns83820.c')
-rw-r--r-- | drivers/net/ns83820.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ns83820.c b/drivers/net/ns83820.c index c336b46bd332..cc7965271778 100644 --- a/drivers/net/ns83820.c +++ b/drivers/net/ns83820.c @@ -101,6 +101,7 @@ #include <linux/moduleparam.h> #include <linux/types.h> #include <linux/pci.h> +#include <linux/dma-mapping.h> #include <linux/netdevice.h> #include <linux/etherdevice.h> #include <linux/delay.h> |