diff options
Diffstat (limited to 'drivers/serial/68328serial.c')
-rw-r--r-- | drivers/serial/68328serial.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/serial/68328serial.c b/drivers/serial/68328serial.c index 5ce3e57bff0b..bbf5bc5892c7 100644 --- a/drivers/serial/68328serial.c +++ b/drivers/serial/68328serial.c | |||
@@ -200,7 +200,7 @@ static void rs_stop(struct tty_struct *tty) | |||
200 | local_irq_restore(flags); | 200 | local_irq_restore(flags); |
201 | } | 201 | } |
202 | 202 | ||
203 | static void rs_put_char(char ch) | 203 | static int rs_put_char(char ch) |
204 | { | 204 | { |
205 | int flags, loops = 0; | 205 | int flags, loops = 0; |
206 | 206 | ||
@@ -214,6 +214,7 @@ static void rs_put_char(char ch) | |||
214 | UTX_TXDATA = ch; | 214 | UTX_TXDATA = ch; |
215 | udelay(5); | 215 | udelay(5); |
216 | local_irq_restore(flags); | 216 | local_irq_restore(flags); |
217 | return 1; | ||
217 | } | 218 | } |
218 | 219 | ||
219 | static void rs_start(struct tty_struct *tty) | 220 | static void rs_start(struct tty_struct *tty) |