aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/rio/riopcicopy.c
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2006-03-24 06:18:30 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-24 10:33:29 -0500
commitdb3185242a9a369d5ef13cd2baf196507925009e (patch)
tree7fd6fcd3df83ba2af2f54f5861091f019d68cde3 /drivers/char/rio/riopcicopy.c
parent3d336aa257ba382c3ad7883ee000cbacb761e411 (diff)
[PATCH] rio driver rework continued #5
Final polish. There is no more save_flags/cli type locking left. We also no longer use the pcicopy function and file so they can go. Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/rio/riopcicopy.c')
-rw-r--r--drivers/char/rio/riopcicopy.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/char/rio/riopcicopy.c b/drivers/char/rio/riopcicopy.c
deleted file mode 100644
index 535afaa51ca5..000000000000
--- a/drivers/char/rio/riopcicopy.c
+++ /dev/null
@@ -1,8 +0,0 @@
1
2/* Yeah. We have copyright on this one. Sure. */
3
4void rio_pcicopy(char *from, char *to, int amount)
5{
6 while (amount--)
7 *to++ = *from++;
8}