Update of /cvsroot/alsa/alsa-kernel/pci/ice1712
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18820/alsa-kernel/pci/ice1712

Modified Files:
        ice1712.c ice1724.c 
Log Message:
Big DMA cleanup originated by Russell King <[EMAIL PROTECTED]>
* Russel
  - introduced 'struct device' support for 2.6 dma_alloc_coherent()
* Jaroslav
  - removed all bus-specific allocation functions
  - extended snd_dma_alloc_pages/snd_dma_free_pages to handle all bus types
  - recoded all (or almost all) device drivers
  - sgbuf functions are bus independent now


Index: ice1712.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/ice1712/ice1712.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ice1712.c   10 Feb 2004 15:35:03 -0000      1.41
+++ ice1712.c   2 Mar 2004 15:32:37 -0000       1.42
@@ -886,7 +886,8 @@
        strcpy(pcm->name, "ICE1712 consumer");
        ice->pcm = pcm;
 
-       snd_pcm_lib_preallocate_pci_pages_for_all(ice->pci, pcm, 64*1024, 64*1024);
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_PCI,
+                                             ice->pci, 64*1024, 64*1024);
 
        if (rpcm)
                *rpcm = pcm;
@@ -922,7 +923,8 @@
        strcpy(pcm->name, "ICE1712 consumer (DS)");
        ice->pcm_ds = pcm;
 
-       snd_pcm_lib_preallocate_pci_pages_for_all(ice->pci, pcm, 64*1024, 128*1024);
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_PCI,
+                                             ice->pci, 64*1024, 128*1024);
 
        if (rpcm)
                *rpcm = pcm;
@@ -1269,7 +1271,8 @@
        pcm->info_flags = 0;
        strcpy(pcm->name, "ICE1712 multi");
 
-       snd_pcm_lib_preallocate_pci_pages_for_all(ice->pci, pcm, 256*1024, 256*1024);
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_PCI,
+                                             ice->pci, 256*1024, 256*1024);
 
        ice->pcm_pro = pcm;
        if (rpcm)

Index: ice1724.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/pci/ice1712/ice1724.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ice1724.c   10 Feb 2004 15:35:03 -0000      1.25
+++ ice1724.c   2 Mar 2004 15:32:37 -0000       1.26
@@ -756,7 +756,8 @@
        pcm->info_flags = 0;
        strcpy(pcm->name, "ICE1724");
 
-       snd_pcm_lib_preallocate_pci_pages_for_all(ice->pci, pcm, 256*1024, 256*1024);
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_PCI,
+                                             ice->pci, 256*1024, 256*1024);
 
        ice->pcm_pro = pcm;
 
@@ -910,7 +911,8 @@
        pcm->info_flags = 0;
        strcpy(pcm->name, "ICE1724 IEC958");
 
-       snd_pcm_lib_preallocate_pci_pages_for_all(ice->pci, pcm, 64*1024, 64*1024);
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_PCI,
+                                             ice->pci, 64*1024, 64*1024);
 
        ice->pcm = pcm;
 
@@ -1031,7 +1033,8 @@
        pcm->info_flags = 0;
        strcpy(pcm->name, "ICE1724 Surround PCM");
 
-       snd_pcm_lib_preallocate_pci_pages_for_all(ice->pci, pcm, 64*1024, 64*1024);
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_PCI,
+                                             ice->pci, 64*1024, 64*1024);
 
        ice->pcm_ds = pcm;
 



-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to