From b34630014dad0ba69aadd8deb231ddc6d2efcf53 Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Wed, 31 Dec 2014 13:12:38 +0600 Subject: x86, early_serial_console: Remove unnecessary check We do this check already a couple of lines up. Signed-off-by: Alexander Kuleshov Link: http://lkml.kernel.org/r/1420009958-4803-1-git-send-email-kuleshovmail@gmail.com Signed-off-by: Borislav Petkov --- arch/x86/boot/early_serial_console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/x86/boot') diff --git a/arch/x86/boot/early_serial_console.c b/arch/x86/boot/early_serial_console.c index 790586daec83..45a07684bbab 100644 --- a/arch/x86/boot/early_serial_console.c +++ b/arch/x86/boot/early_serial_console.c @@ -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; -- cgit v1.2.3