Update of /cvsroot/alsa/alsa-kernel/isa/sb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23362/isa/sb

Modified Files:
        sb16_main.c sb8_main.c 
Log Message:
- clean up the DMA code again.
  now only struct device pointer is handled for every BUS type.
  the pointer must be given via the corresponding macro snd_dma_xxx_data().
- added the hack for dma_alloc_coherent() to accept dev = NULL for ISA
  buffers.
- added the missing include files.


Index: sb16_main.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/sb/sb16_main.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- sb16_main.c 2 Mar 2004 15:38:14 -0000       1.19
+++ sb16_main.c 6 Mar 2004 16:51:29 -0000       1.20
@@ -881,8 +881,8 @@
        else
                pcm->info_flags = SNDRV_PCM_INFO_HALF_DUPLEX;
 
-       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_ISA,
-                                             snd_pcm_dma_flags(0),
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
+                                             snd_dma_isa_data(),
                                              64*1024, 128*1024);
 
        if (rpcm)

Index: sb8_main.c
===================================================================
RCS file: /cvsroot/alsa/alsa-kernel/isa/sb/sb8_main.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- sb8_main.c  2 Mar 2004 15:38:14 -0000       1.14
+++ sb8_main.c  6 Mar 2004 16:51:29 -0000       1.15
@@ -535,8 +535,8 @@
        snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_sb8_playback_ops);
        snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_sb8_capture_ops);
 
-       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_ISA,
-                                             snd_pcm_dma_flags(0),
+       snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
+                                             snd_dma_isa_data(),
                                              64*1024, 64*1024);
 
        if (rpcm)



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to