2005-01-04 00:15:21

by James Nelson

[permalink] [raw]
Subject: [PATCH] mach-ixp2000: remove cli()/sti()

Replace to-be-deprecated functions in arch/arm/mach-ixp2000/pci.c

Signed-off-by: James Nelson <[email protected]>

diff -urN --exclude='*~' linux-2.6.10-mm1-original/arch/arm/mach-ixp2000/pci.c linux-2.6.10-mm1/arch/arm/mach-ixp2000/pci.c
--- linux-2.6.10-mm1-original/arch/arm/mach-ixp2000/pci.c 2004-12-24 16:34:58.000000000 -0500
+++ linux-2.6.10-mm1/arch/arm/mach-ixp2000/pci.c 2005-01-03 18:58:52.648191137 -0500
@@ -145,7 +145,7 @@

pci_master_aborts = 1;

- cli();
+ local_irq_disable();
temp = *(IXP2000_PCI_CONTROL);
if (temp & ((1 << 8) | (1 << 5))) {
ixp2000_reg_write(IXP2000_PCI_CONTROL, temp);
@@ -158,7 +158,7 @@
temp = *(IXP2000_PCI_CMDSTAT);
}
}
- sti();
+ local_irq_enable();

/*
* If it was an imprecise abort, then we need to correct the
@@ -175,7 +175,7 @@
{
volatile u32 temp;

- cli();
+ local_irq_disable();
temp = *(IXP2000_PCI_CONTROL);
if (temp & ((1 << 8) | (1 << 5))) {
ixp2000_reg_write(IXP2000_PCI_CONTROL, temp);
@@ -188,7 +188,7 @@
temp = *(IXP2000_PCI_CMDSTAT);
}
}
- sti();
+ local_irq_enable();

return 0;
}