Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

authored by

Alan Cox and committed by
Linus Torvalds
db318524 3d336aa2

+2 -10
+1 -1
drivers/char/Kconfig
··· 290 290 291 291 config RIO 292 292 tristate "Specialix RIO system support" 293 - depends on SERIAL_NONSTANDARD && BROKEN_ON_SMP && !64BIT 293 + depends on SERIAL_NONSTANDARD && !64BIT 294 294 help 295 295 This is a driver for the Specialix RIO, a smart serial card which 296 296 drives an outboard box that can support up to 128 ports. Product
+1 -1
drivers/char/rio/Makefile
··· 9 9 obj-$(CONFIG_RIO) += rio.o 10 10 11 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
-8
drivers/char/rio/riopcicopy.c
··· 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 - }