Update of /cvsroot/alsa/alsa-kernel/pci/ice1712
In directory sc8-pr-cvs1:/tmp/cvs-serv12541/pci/ice1712

Modified Files:
        ice1712.c ice1724.c 
Log Message:
- fixed the DMA allocation.
  pci_set_dma_mask() is called together with pci_set_consistent_dma_mask().
  also clean up the double check of mask.


Index: ice1712.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/ice1712/ice1712.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ice1712.c   29 Dec 2003 15:41:45 -0000      1.38
+++ ice1712.c   19 Jan 2004 18:37:35 -0000      1.39
@@ -2363,11 +2363,11 @@
        if ((err = pci_enable_device(pci)) < 0)
                return err;
        /* check, if we can restrict PCI DMA transfers to 28 bits */
-       if (!pci_dma_supported(pci, 0x0fffffff)) {
+       if (pci_set_dma_mask(pci, 0x0fffffff) < 0 ||
+           pci_set_consistent_dma_mask(pci, 0x0fffffff) < 0) {
                snd_printk("architecture does not support 28bit PCI busmaster DMA\n");
                return -ENXIO;
        }
-       pci_set_consistent_dma_mask(pci, 0x0fffffff);
 
        ice = snd_magic_kcalloc(ice1712_t, 0, GFP_KERNEL);
        if (ice == NULL)

Index: ice1724.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/ice1712/ice1724.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ice1724.c   20 Nov 2003 13:22:20 -0000      1.21
+++ ice1724.c   19 Jan 2004 18:37:35 -0000      1.22
@@ -1801,7 +1801,6 @@
         /* enable PCI device */
        if ((err = pci_enable_device(pci)) < 0)
                return err;
-       pci_set_consistent_dma_mask(pci, 0xffffffff); 
 
        ice = snd_magic_kcalloc(ice1712_t, 0, GFP_KERNEL);
        if (ice == NULL)



-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to