From: Heiko Carstens Date: Wed, 10 Aug 2011 08:34:27 +0000 (+0200) Subject: lscpu: fix s390 bogomips detection coding style X-Git-Tag: v2.21-rc1~472^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abcd6368e65084c328c4d3b8cb05a31c55c7d478;p=thirdparty%2Futil-linux.git lscpu: fix s390 bogomips detection coding style Just make the s390 bogomips detection line look like all others. Signed-off-by: Heiko Carstens --- diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index 50daf3c4c5..48c8044d44 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -434,8 +434,7 @@ read_basicinfo(struct lscpu_desc *desc) else if (lookup(buf, "features", &desc->flags)) ; /* s390 */ else if (lookup(buf, "type", &desc->flags)) ; /* sparc64 */ else if (lookup(buf, "bogomips", &desc->bogomips)) ; - /* S390 */ - else if (lookup(buf, "bogomips per cpu", &desc->bogomips)) ; + else if (lookup(buf, "bogomips per cpu", &desc->bogomips)) ; /* s390 */ else continue; }