[PATCH] sound/oss/es1371: Use the DMA_32BIT_MASK constant

Use the DMA_32BIT_MASK constant from dma-mapping.h when calling
pci_set_dma_mask() or pci_set_consistent_dma_mask() 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>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Tobias Klauser and committed by Linus Torvalds 3ee538a2 caac3a44

+2 -1
+2 -1
sound/oss/es1371.c
··· 128 128 #include <linux/ac97_codec.h> 129 129 #include <linux/gameport.h> 130 130 #include <linux/wait.h> 131 + #include <linux/dma-mapping.h> 131 132 132 133 #include <asm/io.h> 133 134 #include <asm/page.h> ··· 2805 2804 return -ENODEV; 2806 2805 if (pcidev->irq == 0) 2807 2806 return -ENODEV; 2808 - i = pci_set_dma_mask(pcidev, 0xffffffff); 2807 + i = pci_set_dma_mask(pcidev, DMA_32BIT_MASK); 2809 2808 if (i) { 2810 2809 printk(KERN_WARNING "es1371: architecture does not support 32bit PCI busmaster DMA\n"); 2811 2810 return i;