patch-2.4.22 linux-2.4.22/arch/arm/kernel/oldlatches.c
Next file: linux-2.4.22/arch/arm/kernel/process.c
Previous file: linux-2.4.22/arch/arm/kernel/irq.c
Back to the patch index
Back to the overall index
- Lines: 26
- Date:
2003-08-25 04:44:39.000000000 -0700
- Orig file:
linux-2.4.21/arch/arm/kernel/oldlatches.c
- Orig date:
2001-08-12 11:13:59.000000000 -0700
diff -urN linux-2.4.21/arch/arm/kernel/oldlatches.c linux-2.4.22/arch/arm/kernel/oldlatches.c
@@ -29,10 +29,10 @@
if (machine_is_archimedes()) {
unsigned long flags;
- local_save_flags(flags);
+ local_irq_save(flags);
latch_a_copy = (latch_a_copy & ~mask) | newdata;
__raw_writeb(latch_a_copy, LATCHA_BASE);
- local_restore_flags(flags);
+ local_irq_restore(flags);
printk("Latch: A = 0x%02x\n", latch_a_copy);
} else
@@ -46,10 +46,10 @@
if (machine_is_archimedes()) {
unsigned long flags;
- local_save_flags(flags);
+ local_irq_save(flags);
latch_b_copy = (latch_b_copy & ~mask) | newdata;
__raw_writeb(latch_b_copy, LATCHB_BASE);
- local_restore_flags(flags);
+ local_irq_restore(flags);
printk("Latch: B = 0x%02x\n", latch_b_copy);
} else
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)