diff options
author | David S. Miller <davem@davemloft.net> | 2010-05-26 02:51:17 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-26 02:51:17 -0400 |
commit | 7c1f6afcf98fe95fb3f2b70ce01cf66f6db53b5e (patch) | |
tree | 36393bfe9287b99b19f437ac01f43750e293e61e /drivers | |
parent | c87fe1c05d57e3fecd62e56da1b1ac4291116ebf (diff) |
sunserial: Don't call add_preferred_console() when console= is specified.
Reported-by: Frans Pop <elendil@planet.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/serial/suncore.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/serial/suncore.c b/drivers/serial/suncore.c index ed7d958b0a01..544f2e25d0e5 100644 --- a/drivers/serial/suncore.c +++ b/drivers/serial/suncore.c | |||
@@ -71,7 +71,9 @@ int sunserial_console_match(struct console *con, struct device_node *dp, | |||
71 | 71 | ||
72 | con->index = line; | 72 | con->index = line; |
73 | drv->cons = con; | 73 | drv->cons = con; |
74 | add_preferred_console(con->name, line, NULL); | 74 | |
75 | if (!console_set_on_cmdline) | ||
76 | add_preferred_console(con->name, line, NULL); | ||
75 | 77 | ||
76 | return 1; | 78 | return 1; |
77 | } | 79 | } |