Commit b3463001 authored by Alexander Kuleshov's avatar Alexander Kuleshov Committed by Borislav Petkov

x86, early_serial_console: Remove unnecessary check

We do this check already a couple of lines up.
Signed-off-by: default avatarAlexander Kuleshov <kuleshovmail@gmail.com>
Link: http://lkml.kernel.org/r/1420009958-4803-1-git-send-email-kuleshovmail@gmail.comSigned-off-by: default avatarBorislav Petkov <bp@suse.de>
parent e054273a
......@@ -72,8 +72,8 @@ static void parse_earlyprintk(void)
static const int bases[] = { 0x3f8, 0x2f8 };
int idx = 0;
if (!strncmp(arg + pos, "ttyS", 4))
pos += 4;
/* += strlen("ttyS"); */
pos += 4;
if (arg[pos++] == '1')
idx = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment