diff options
Diffstat (limited to 'arch/mips/sni/sniprom.c')
-rw-r--r-- | arch/mips/sni/sniprom.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/mips/sni/sniprom.c b/arch/mips/sni/sniprom.c index 643366eb854a..00a03a6e8f58 100644 --- a/arch/mips/sni/sniprom.c +++ b/arch/mips/sni/sniprom.c | |||
@@ -146,7 +146,10 @@ static void __init sni_console_setup(void) | |||
146 | } | 146 | } |
147 | if (baud) | 147 | if (baud) |
148 | strcpy(options, baud); | 148 | strcpy(options, baud); |
149 | add_preferred_console("ttyS", port, baud ? options : NULL); | 149 | if (strncmp (cdev, "tty552", 6) == 0) |
150 | add_preferred_console("ttyS", port, baud ? options : NULL); | ||
151 | else | ||
152 | add_preferred_console("ttySC", port, baud ? options : NULL); | ||
150 | } | 153 | } |
151 | } | 154 | } |
152 | 155 | ||