diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-03-24 06:18:30 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:29 -0500 |
commit | db3185242a9a369d5ef13cd2baf196507925009e (patch) | |
tree | 7fd6fcd3df83ba2af2f54f5861091f019d68cde3 /drivers/char/rio | |
parent | 3d336aa257ba382c3ad7883ee000cbacb761e411 (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')
-rw-r--r-- | drivers/char/rio/Makefile | 2 | ||||
-rw-r--r-- | drivers/char/rio/riopcicopy.c | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/drivers/char/rio/Makefile b/drivers/char/rio/Makefile index bce2bd1204ed..2d1c5a7cba7d 100644 --- a/drivers/char/rio/Makefile +++ b/drivers/char/rio/Makefile | |||
@@ -9,4 +9,4 @@ | |||
9 | obj-$(CONFIG_RIO) += rio.o | 9 | obj-$(CONFIG_RIO) += rio.o |
10 | 10 | ||
11 | rio-objs := rio_linux.o rioinit.o rioboot.o riocmd.o rioctrl.o riointr.o \ | 11 | rio-objs := rio_linux.o rioinit.o rioboot.o riocmd.o rioctrl.o riointr.o \ |
12 | rioparam.o riopcicopy.o rioroute.o riotable.o riotty.o | 12 | rioparam.o rioroute.o riotable.o riotty.o |
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 | |||
4 | void rio_pcicopy(char *from, char *to, int amount) | ||
5 | { | ||
6 | while (amount--) | ||
7 | *to++ = *from++; | ||
8 | } | ||