diff options
author | Magnus Damm <damm@opensource.se> | 2009-11-05 09:34:57 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-11-06 03:23:04 -0500 |
commit | 345e5a7672f561b539b3249cbe437b8d6595ab1b (patch) | |
tree | 28bb5abdaa86d8eed783595ef8cd84e3274d0400 /drivers/serial/sh-sci.c | |
parent | 7c9abfb884b8737f0afdc8a88bcea77526f0da87 (diff) |
serial: sh-sci: disable callback typo fix
Avoid invoking the disable callback in case of NULL.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/serial/sh-sci.c')
-rw-r--r-- | drivers/serial/sh-sci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/sh-sci.c b/drivers/serial/sh-sci.c index 85119fb7cb50..6498bd1fb6dd 100644 --- a/drivers/serial/sh-sci.c +++ b/drivers/serial/sh-sci.c | |||
@@ -1143,7 +1143,7 @@ static void serial_console_write(struct console *co, const char *s, | |||
1143 | while ((sci_in(port, SCxSR) & bits) != bits) | 1143 | while ((sci_in(port, SCxSR) & bits) != bits) |
1144 | cpu_relax(); | 1144 | cpu_relax(); |
1145 | 1145 | ||
1146 | if (sci_port->disable); | 1146 | if (sci_port->disable) |
1147 | sci_port->disable(port); | 1147 | sci_port->disable(port); |
1148 | } | 1148 | } |
1149 | 1149 | ||