lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 30 Dec 2014 18:59:23 +0600 From: Alexander Kuleshov <kuleshovmail@...il.com> To: "H. Peter Anvin" <hpa@...or.com>, Thomas Gleixner <tglx@...utronix.de>, Ingo Molnar <mingo@...hat.com> Cc: linux-kernel@...r.kernel.org, Alexander Kuleshov <kuleshovmail@...il.com> Subject: [PATCH] x86/boot/early_serial_console: Remove unnecessary check There is already the same check before. Signed-off-by: Alexander Kuleshov <kuleshovmail@...il.com> --- arch/x86/boot/early_serial_console.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arch/x86/boot/early_serial_console.c b/arch/x86/boot/early_serial_console.c index 5df2869..3aa5d3c 100644 --- a/arch/x86/boot/early_serial_console.c +++ b/arch/x86/boot/early_serial_console.c @@ -73,9 +73,7 @@ static void parse_earlyprintk(void) } else if (!strncmp(arg + pos, "ttyS", 4)) { static const int bases[] = { 0x3f8, 0x2f8 }; int idx = 0; - - if (!strncmp(arg + pos, "ttyS", 4)) - pos += 4; + pos += 4; if (arg[pos++] == '1') idx = 1; -- 2.2.1.202.g44ae4ee.dirty -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists