Commit 974933e6 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] small char/generic_serial.c cleanup

The patch below does the following changes to
drivers/char/generic_serial.c :
- make two needlessly global functions static
- remove the completely unused EXPORT_SYMBOL'ed function gs_do_softint

AFAIR the latter should be safe, since drivers are moving away from
generic_serial.c.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent cdc807e5
......@@ -279,7 +279,7 @@ int gs_chars_in_buffer(struct tty_struct *tty)
}
int gs_real_chars_in_buffer(struct tty_struct *tty)
static int gs_real_chars_in_buffer(struct tty_struct *tty)
{
struct gs_port *port;
func_enter ();
......@@ -457,7 +457,7 @@ void gs_start(struct tty_struct * tty)
}
void gs_shutdown_port (struct gs_port *port)
static void gs_shutdown_port (struct gs_port *port)
{
unsigned long flags;
......@@ -511,27 +511,6 @@ void gs_hangup(struct tty_struct *tty)
}
void gs_do_softint(void *private_)
{
struct gs_port *port = private_;
struct tty_struct *tty;
func_enter ();
if (!port) return;
tty = port->tty;
if (!tty) return;
if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP, &port->event)) {
tty_wakeup(tty);
wake_up_interruptible(&tty->write_wait);
}
func_exit ();
}
int gs_block_til_ready(void *port_, struct file * filp)
{
struct gs_port *port = port_;
......@@ -996,7 +975,6 @@ EXPORT_SYMBOL(gs_flush_chars);
EXPORT_SYMBOL(gs_stop);
EXPORT_SYMBOL(gs_start);
EXPORT_SYMBOL(gs_hangup);
EXPORT_SYMBOL(gs_do_softint);
EXPORT_SYMBOL(gs_block_til_ready);
EXPORT_SYMBOL(gs_close);
EXPORT_SYMBOL(gs_set_termios);
......
......@@ -82,7 +82,6 @@ void gs_flush_chars(struct tty_struct *tty);
void gs_stop(struct tty_struct *tty);
void gs_start(struct tty_struct *tty);
void gs_hangup(struct tty_struct *tty);
void gs_do_softint(void *private_);
int gs_block_til_ready(void *port, struct file *filp);
void gs_close(struct tty_struct *tty, struct file *filp);
void gs_set_termios (struct tty_struct * tty,
......
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