public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] opl3sa2.c: DMA timeout when recording
@ 2001-10-04 18:08 Jerome AUGE
  0 siblings, 0 replies; only message in thread
From: Jerome AUGE @ 2001-10-04 18:08 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 314 bytes --]

Hi,

Here is a patch that fix a problem with the opl3sa2 driver. The problem
is that if you use two distinct DMA channels, then you can play but
can't record OR record and can't play, you get the message "DMA timeout
(...)"
The dma and dma2 are not initialized with the real DMA channels and they
remain at -1.

--

[-- Attachment #2: patch-opl3sa2-dma-init --]
[-- Type: text/plain, Size: 924 bytes --]

diff -ur linux.orig/drivers/sound/opl3sa2.c linux/drivers/sound/opl3sa2.c
--- linux.orig/drivers/sound/opl3sa2.c	Wed Oct  3 09:36:16 2001
+++ linux/drivers/sound/opl3sa2.c	Wed Oct  3 09:41:28 2001
@@ -862,9 +862,9 @@
 
 	/* Our own config: */
 	hw_cfg->io_base = dev->resource[4].start;
-	hw_cfg->irq     = 0;
-	hw_cfg->dma     = -1;
-	hw_cfg->dma2    = -1;
+	hw_cfg->irq     = dev->irq_resource[0].start;
+	hw_cfg->dma     = dev->dma_resource[0].start;
+	hw_cfg->dma2    = dev->dma_resource[1].start;
 	
 	/* The MSS config: */
 	mss_cfg->io_base      = dev->resource[1].start;
@@ -944,9 +944,9 @@
 			 *  give pretty output from conf_printf. :)
 			 */
 			cfg[card].io_base = io;
-			cfg[card].irq     = 0;
-			cfg[card].dma     = -1;
-			cfg[card].dma2    = -1;
+			cfg[card].irq     = irq;
+			cfg[card].dma     = dma;
+			cfg[card].dma2    = dma2;
 	
 			/* The MSS config: */
 			cfg_mss[card].io_base      = mss_io;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-10-04 18:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-04 18:08 [PATCH] opl3sa2.c: DMA timeout when recording Jerome AUGE

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox