Skip to content

Commit

Permalink
x86, early_serial_console: Remove unnecessary check
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Alexander Kuleshov authored and Borislav Petkov committed Jan 13, 2015
1 parent e054273 commit b346300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/boot/early_serial_console.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b346300

Please sign in to comment.