projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e054273
)
x86, early_serial_console: Remove unnecessary check
author
Alexander Kuleshov
<kuleshovmail@gmail.com>
Wed, 31 Dec 2014 07:12:38 +0000
(13:12 +0600)
committer
Borislav Petkov
<bp@suse.de>
Tue, 13 Jan 2015 11:14:44 +0000
(12:14 +0100)
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>
arch/x86/boot/early_serial_console.c
patch
|
blob
|
history
diff --git
a/arch/x86/boot/early_serial_console.c
b/arch/x86/boot/early_serial_console.c
index 790586daec83ae39ba8ed1d80a405c25925ebf1c..45a07684bbabf3b617dcbd5b53ac5710bcb10e57 100644
(file)
--- 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;