Commit db318524 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[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: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3d336aa2
...@@ -290,7 +290,7 @@ config SX ...@@ -290,7 +290,7 @@ config SX
config RIO config RIO
tristate "Specialix RIO system support" tristate "Specialix RIO system support"
depends on SERIAL_NONSTANDARD && BROKEN_ON_SMP && !64BIT depends on SERIAL_NONSTANDARD && !64BIT
help help
This is a driver for the Specialix RIO, a smart serial card which This is a driver for the Specialix RIO, a smart serial card which
drives an outboard box that can support up to 128 ports. Product drives an outboard box that can support up to 128 ports. Product
......
...@@ -9,4 +9,4 @@ ...@@ -9,4 +9,4 @@
obj-$(CONFIG_RIO) += rio.o obj-$(CONFIG_RIO) += rio.o
rio-objs := rio_linux.o rioinit.o rioboot.o riocmd.o rioctrl.o riointr.o \ rio-objs := rio_linux.o rioinit.o rioboot.o riocmd.o rioctrl.o riointr.o \
rioparam.o riopcicopy.o rioroute.o riotable.o riotty.o rioparam.o rioroute.o riotable.o riotty.o
/* Yeah. We have copyright on this one. Sure. */
void rio_pcicopy(char *from, char *to, int amount)
{
while (amount--)
*to++ = *from++;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment