From: Alan Cox 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 Signed-off-by: Andrew Morton --- dev/null | 8 -------- drivers/char/Kconfig | 2 +- drivers/char/rio/Makefile | 2 +- 3 files changed, 2 insertions(+), 10 deletions(-) diff -puN drivers/char/Kconfig~rio-driver-rework-continued-5 drivers/char/Kconfig --- 25/drivers/char/Kconfig~rio-driver-rework-continued-5 Wed Mar 15 15:12:42 2006 +++ 25-akpm/drivers/char/Kconfig Wed Mar 15 15:12:42 2006 @@ -290,7 +290,7 @@ config SX config RIO tristate "Specialix RIO system support" - depends on SERIAL_NONSTANDARD && BROKEN_ON_SMP && !64BIT + depends on SERIAL_NONSTANDARD && !64BIT help 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 diff -puN drivers/char/rio/Makefile~rio-driver-rework-continued-5 drivers/char/rio/Makefile --- 25/drivers/char/rio/Makefile~rio-driver-rework-continued-5 Wed Mar 15 15:12:42 2006 +++ 25-akpm/drivers/char/rio/Makefile Wed Mar 15 15:12:42 2006 @@ -9,4 +9,4 @@ obj-$(CONFIG_RIO) += rio.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 diff -L drivers/char/rio/riopcicopy.c -puN drivers/char/rio/riopcicopy.c~rio-driver-rework-continued-5 /dev/null --- 25/drivers/char/rio/riopcicopy.c +++ /dev/null Thu Apr 11 07:25:15 2002 @@ -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++; -} _