patch-2.4.9 linux/arch/arm/mach-ebsa110/io.c

Next file: linux/arch/arm/mach-footbridge/Makefile
Previous file: linux/arch/arm/mach-anakin/mm.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.4.8/linux/arch/arm/mach-ebsa110/io.c linux/arch/arm/mach-ebsa110/io.c
@@ -261,7 +261,7 @@
 			BUG();
 	}
 
-	__arch_writesb(ISAIO_BASE + off, from, len);
+	__raw_writesb(ISAIO_BASE + off, from, len);
 }
 
 void insb(unsigned int port, void *from, int len)
@@ -276,7 +276,7 @@
 			BUG();
 	}
 
-	__arch_readsb(ISAIO_BASE + off, from, len);
+	__raw_readsb(ISAIO_BASE + off, from, len);
 }
 
 void outsw(unsigned int port, const void *from, int len)
@@ -291,7 +291,7 @@
 			BUG();
 	}
 
-	__arch_writesw(ISAIO_BASE + off, from, len);
+	__raw_writesw(ISAIO_BASE + off, from, len);
 }
 
 void insw(unsigned int port, void *from, int len)
@@ -306,7 +306,7 @@
 			BUG();
 	}
 
-	__arch_readsw(ISAIO_BASE + off, from, len);
+	__raw_readsw(ISAIO_BASE + off, from, len);
 }
 
 void outsl(unsigned int port, const void *from, int len)

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)