diff options
author | Russell King <rmk+lkml@arm.linux.org.uk> | 2005-06-25 14:54:30 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 16:24:25 -0700 |
commit | 7919a693bd735ed0aa93fc359ae09a588cfeb3bc (patch) | |
tree | 741946d5de968903bb0b2225320c65c2e88a0b7a /arch/xtensa | |
parent | 821fe94727e72d63e1abd1bc0b044c72dfad9fb6 (diff) | |
download | linux-3.10-7919a693bd735ed0aa93fc359ae09a588cfeb3bc.tar.gz linux-3.10-7919a693bd735ed0aa93fc359ae09a588cfeb3bc.tar.bz2 linux-3.10-7919a693bd735ed0aa93fc359ae09a588cfeb3bc.zip |
[PATCH] Serial: remove unnecessary register_serial/unregister_serial
A couple of drivers declare register_serial/unregister_serial prototypes
but don't use them. FRV contains a commented out call to register_serial.
Since these are deprecated, remove these unnecessary references.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/platform-iss/console.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/xtensa/platform-iss/console.c b/arch/xtensa/platform-iss/console.c index 9e2b53f6a90..4fbddf92a92 100644 --- a/arch/xtensa/platform-iss/console.c +++ b/arch/xtensa/platform-iss/console.c @@ -198,9 +198,6 @@ static int rs_read_proc(char *page, char **start, off_t off, int count, } -int register_serial(struct serial_struct*); -void unregister_serial(int); - static struct tty_operations serial_ops = { .open = rs_open, .close = rs_close, |