diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-03-24 12:18:30 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 16:33:29 +0100 |
commit | db3185242a9a369d5ef13cd2baf196507925009e (patch) | |
tree | 7fd6fcd3df83ba2af2f54f5861091f019d68cde3 /drivers/char/rio/riopcicopy.c | |
parent | [PATCH] rio driver rework continued #4 (diff) | |
download | linux-db3185242a9a369d5ef13cd2baf196507925009e.tar.xz linux-db3185242a9a369d5ef13cd2baf196507925009e.zip |
[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 '')
-rw-r--r-- | drivers/char/rio/riopcicopy.c | 8 |
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 @@ - -/* Yeah. We have copyright on this one. Sure. */ - -void rio_pcicopy(char *from, char *to, int amount) -{ - while (amount--) - *to++ = *from++; -} |