patch-2.3.19 linux/include/pcmcia/mem_op.h

Next file: linux/init/main.c
Previous file: linux/include/pcmcia/bus_ops.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.18/linux/include/pcmcia/mem_op.h linux/include/pcmcia/mem_op.h
@@ -1,5 +1,5 @@
 /*
- * mem_op.h 1.10 1999/08/28 04:12:33
+ * mem_op.h 1.11 1999/09/15 07:14:03
  *
  * The contents of this file are subject to the Mozilla Public License
  * Version 1.1 (the "License"); you may not use this file except in
@@ -49,7 +49,7 @@
     size_t odd = (n & 3);
     n -= odd;
     while (n) {
-	put_user(readl_ns(from), (int *)to);
+	put_user(__raw_readl(from), (int *)to);
 	(char *)from += 4; (char *)to += 4; n -= 4;
     }
     while (odd--)
@@ -64,7 +64,7 @@
     n -= odd;
     while (n) {
 	get_user(l, (int *)from);
-	writel_ns(l, to);
+	__raw_writel(l, to);
 	(char *)to += 4; (char *)from += 4; n -= 4;
     }
     while (odd--) {

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