public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: J Sloan <joe@tmsusa.com>
To: Petr Vandrovec <vandrove@vc.cvut.cz>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] es1371 synchronize_irq()
Date: Thu, 01 Aug 2002 15:45:26 -0700	[thread overview]
Message-ID: <3D49BA06.1040606@tmsusa.com> (raw)
In-Reply-To: 20020801223827.GA11949@vana.vc.cvut.cz

Many of us use es1371/OSS - but are on 2.4 for now...

Joe

Petr Vandrovec wrote:

>Hello Linus,
>   nobody else is apparently using OSS's es1371...
>
>Patch below converts synchronize_irq() calls in es1371 to the new
>format.
>					Petr Vandrovec
>					vandrove@vc.cvut.cz
>
>diff -urdN linux/sound/oss/es1371.c linux/sound/oss/es1371.c
>--- linux/sound/oss/es1371.c	2002-07-31 10:48:09.000000000 +0000
>+++ linux/sound/oss/es1371.c	2002-07-31 10:54:57.000000000 +0000
>@@ -1597,12 +1597,12 @@
>         case SNDCTL_DSP_RESET:
> 		if (file->f_mode & FMODE_WRITE) {
> 			stop_dac2(s);
>-			synchronize_irq();
>+			synchronize_irq(s->irq);
> 			s->dma_dac2.swptr = s->dma_dac2.hwptr = s->dma_dac2.count = s->dma_dac2.total_bytes = 0;
> 		}
> 		if (file->f_mode & FMODE_READ) {
> 			stop_adc(s);
>-			synchronize_irq();
>+			synchronize_irq(s->irq);
> 			s->dma_adc.swptr = s->dma_adc.hwptr = s->dma_adc.count = s->dma_adc.total_bytes = 0;
> 		}
> 		return 0;
>@@ -2162,7 +2162,7 @@
> 		
>         case SNDCTL_DSP_RESET:
> 		stop_dac1(s);
>-		synchronize_irq();
>+		synchronize_irq(s->irq);
> 		s->dma_dac1.swptr = s->dma_dac1.hwptr = s->dma_dac1.count = s->dma_dac1.total_bytes = 0;
> 		return 0;
> 
>@@ -3001,7 +3001,7 @@
> #endif /* ES1371_DEBUG */
> 	outl(0, s->io+ES1371_REG_CONTROL); /* switch everything off */
> 	outl(0, s->io+ES1371_REG_SERIAL_CONTROL); /* clear serial interrupts */
>-	synchronize_irq();
>+	synchronize_irq(s->irq);
> 	free_irq(s->irq, s);
> 	if (s->gameport.io) {
> 		gameport_unregister_port(&s->gameport);
>-
>To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html
>Please read the FAQ at  http://www.tux.org/lkml/
>
>  
>


      reply	other threads:[~2002-08-01 22:42 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-08-01 22:38 [PATCH] es1371 synchronize_irq() Petr Vandrovec
2002-08-01 22:45 ` J Sloan [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3D49BA06.1040606@tmsusa.com \
    --to=joe@tmsusa.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=vandrove@vc.cvut.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox