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>
This commit is contained in:
David S. Miller 2010-05-25 23:51:17 -07:00
parent c87fe1c05d
commit 7c1f6afcf9
1 changed files with 3 additions and 1 deletions

View File

@ -71,7 +71,9 @@ int sunserial_console_match(struct console *con, struct device_node *dp,
con->index = line;
drv->cons = con;
add_preferred_console(con->name, line, NULL);
if (!console_set_on_cmdline)
add_preferred_console(con->name, line, NULL);
return 1;
}