From: Heiko Carstens Date: Wed, 29 Aug 2012 12:54:38 +0000 (+0200) Subject: s390/processor: use ARRAY_SIZE instead of hard coded value X-Git-Tag: v3.7-rc1~179^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fbf3c54239f77a82218002e0c511819e274e7cd4;p=profile%2Fivi%2Fkernel-x86-ivi.git s390/processor: use ARRAY_SIZE instead of hard coded value Signed-off-by: Heiko Carstens Signed-off-by: Martin Schwidefsky --- diff --git a/arch/s390/kernel/processor.c b/arch/s390/kernel/processor.c index 63f3b76..753c41d 100644 --- a/arch/s390/kernel/processor.c +++ b/arch/s390/kernel/processor.c @@ -39,7 +39,7 @@ void __cpuinit cpu_init(void) */ static int show_cpuinfo(struct seq_file *m, void *v) { - static const char *hwcap_str[11] = { + static const char *hwcap_str[] = { "esan3", "zarch", "stfle", "msa", "ldisp", "eimm", "dfp", "edat", "etf3eh", "highgprs", "te" }; @@ -54,7 +54,7 @@ static int show_cpuinfo(struct seq_file *m, void *v) num_online_cpus(), loops_per_jiffy/(500000/HZ), (loops_per_jiffy/(5000/HZ))%100); seq_puts(m, "features\t: "); - for (i = 0; i < 11; i++) + for (i = 0; i < ARRAY_SIZE(hwcap_str); i++) if (hwcap_str[i] && (elf_hwcap & (1UL << i))) seq_printf(m, "%s ", hwcap_str[i]); seq_puts(m, "\n");