linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm26: update irq handling code in arch/arm26/machine/dma.c
@ 2005-01-05  1:59 James Nelson
  2005-01-06  2:18 ` Ian Molton
  0 siblings, 1 reply; 2+ messages in thread
From: James Nelson @ 2005-01-05  1:59 UTC (permalink / raw)
  To: linux-kernel; +Cc: spyro, James Nelson

Remove to-be-deprecated function save_flags() and nonexistent function local_save_flags_cli()

Signed-off-by: James Nelson <james4765@gmail.com>

diff -urN --exclude='*~' linux-2.6.10-mm1-original/arch/arm26/machine/dma.c linux-2.6.10-mm1/arch/arm26/machine/dma.c
--- linux-2.6.10-mm1-original/arch/arm26/machine/dma.c	2005-01-03 18:42:35.631091938 -0500
+++ linux-2.6.10-mm1/arch/arm26/machine/dma.c	2005-01-04 20:52:17.051263510 -0500
@@ -40,7 +40,7 @@
 	case DMA_MODE_READ: { /* read */
 		unsigned long flags;
 		DPRINTK("enable_dma fdc1772 data read\n");
-		local_save_flags_cli(flags);
+		local_irq_save(flags);
 		clf();
 			
 		memcpy ((void *)0x1c, (void *)&fdc1772_dma_read,
@@ -54,7 +54,7 @@
 	case DMA_MODE_WRITE: { /* write */
 		unsigned long flags;
 		DPRINTK("enable_dma fdc1772 data write\n");
-		local_save_flags_cli(flags);
+		local_irq_save(flags);
 		clf();
 		memcpy ((void *)0x1c, (void *)&fdc1772_dma_write,
 			&fdc1772_dma_write_end - &fdc1772_dma_write);
@@ -85,7 +85,7 @@
 
 	DPRINTK("arc_floppy_cmdend_enable_dma\n");
 	/*printk("enable_dma fdc1772 command end FIQ\n");*/
-	save_flags(flags);
+	local_irq_save(flags);
 	clf();
 	
 	/* B fdc1772_comendhandler */

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] arm26: update irq handling code in arch/arm26/machine/dma.c
  2005-01-05  1:59 [PATCH] arm26: update irq handling code in arch/arm26/machine/dma.c James Nelson
@ 2005-01-06  2:18 ` Ian Molton
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Molton @ 2005-01-06  2:18 UTC (permalink / raw)
  To: James Nelson; +Cc: linux-kernel

James Nelson wrote:
> Remove to-be-deprecated function save_flags() and nonexistent function local_save_flags_cli()
> 
> Signed-off-by: James Nelson <james4765@gmail.com>

I've applied this to my tree.

About the signing off thing - do I assume that since its posted here, 
someone else will forward it on, or should I sign off on it and send it 
to who I think it should go to?


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-01-06  2:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-05  1:59 [PATCH] arm26: update irq handling code in arch/arm26/machine/dma.c James Nelson
2005-01-06  2:18 ` Ian Molton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).