diff options
author | Rafael J. Wysocki <rjw@sisk.pl> | 2011-08-07 18:26:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-07 18:51:45 -0400 |
commit | fc97114b8d67819fadcc5af855da9a3e6a6a329b (patch) | |
tree | f790c70af791b6ad25cffcb10218ace9dee52896 | |
parent | f23c126bfabef88c201c8cc56bd3ccd9d59c51e0 (diff) |
sh: Fix boot crash related to SCI
Commit d006199e72a9 ("serial: sh-sci: Regtype probing doesn't need to be
fatal.") made sci_init_single() return when sci_probe_regmap() succeeds,
although it should return when sci_probe_regmap() fails. This causes
systems using the serial sh-sci driver to crash during boot.
Fix the problem by using the right return condition.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/tty/serial/sh-sci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index d0a56235c50e..2ec57b2fb278 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c | |||
@@ -1889,7 +1889,7 @@ static int __devinit sci_init_single(struct platform_device *dev, | |||
1889 | 1889 | ||
1890 | if (p->regtype == SCIx_PROBE_REGTYPE) { | 1890 | if (p->regtype == SCIx_PROBE_REGTYPE) { |
1891 | ret = sci_probe_regmap(p); | 1891 | ret = sci_probe_regmap(p); |
1892 | if (unlikely(!ret)) | 1892 | if (unlikely(ret)) |
1893 | return ret; | 1893 | return ret; |
1894 | } | 1894 | } |
1895 | 1895 | ||