commit | b34630014dad0ba69aadd8deb231ddc6d2efcf53 | [log] [tgz] |
---|---|---|
author | Alexander Kuleshov <kuleshovmail@gmail.com> | Wed Dec 31 13:12:38 2014 +0600 |
committer | Borislav Petkov <bp@suse.de> | Tue Jan 13 12:14:44 2015 +0100 |
tree | 9edf06f7dcb6e3ed4a42e9c4640765fef8d9b0e7 | |
parent | e054273a9b117f74ad8214b1f0f23e917e25522e [diff] [blame] |
x86, early_serial_console: Remove unnecessary check We do this check already a couple of lines up. Signed-off-by: Alexander Kuleshov <kuleshovmail@gmail.com> Link: http://lkml.kernel.org/r/1420009958-4803-1-git-send-email-kuleshovmail@gmail.com Signed-off-by: Borislav Petkov <bp@suse.de>
diff --git a/arch/x86/boot/early_serial_console.c b/arch/x86/boot/early_serial_console.c index 790586d..45a07684 100644 --- a/arch/x86/boot/early_serial_console.c +++ b/arch/x86/boot/early_serial_console.c
@@ -72,8 +72,8 @@ 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;