Re: [PATCH v4 5/13] Use ARRAY_SIZE to iterate over firmware_features_table array

2013-04-25 Thread Stephen Rothwell
Hi Nathan,

On Wed, 24 Apr 2013 10:55:08 -0500 Nathan Fontenot nf...@linux.vnet.ibm.com 
wrote:

 When iterating over the entries in firmware_features_table we only need
 to go over the actual number of entries in the array instead of declaring
 it to be bigger and checking to make sure there is a valid entry in every
 slot.
 
 This patch removes the FIRMWARE_MAX_FEATURES #define and replaces the
 array looping with the use of ARRAY_SIZE().
 

Suggested-by: Stephen Rothwell s...@canb.auug.org.au

 Signed-off-by: Nathan Fontenot nf...@linux.vnet.ibm.com
 @@ -77,12 +77,10 @@
   pr_debug( - fw_feature_init()\n);
  
   for (s = hypertas; s  hypertas + len; s += strlen(s) + 1) {
 - for (i = 0; i  FIRMWARE_MAX_FEATURES; i++) {
 + for (i = 0; i  ARRAY_SIZE(firmware_features_table); i++) {

You should explicitly include linux/kernel.h to use ARRAY_SIZE().

-- 
Cheers,
Stephen Rothwells...@canb.auug.org.au


pgpqkhZaB7acz.pgp
Description: PGP signature
___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

[PATCH v4 5/13] Use ARRAY_SIZE to iterate over firmware_features_table array

2013-04-24 Thread Nathan Fontenot
When iterating over the entries in firmware_features_table we only need
to go over the actual number of entries in the array instead of declaring
it to be bigger and checking to make sure there is a valid entry in every
slot.

This patch removes the FIRMWARE_MAX_FEATURES #define and replaces the
array looping with the use of ARRAY_SIZE().

Signed-off-by: Nathan Fontenot nf...@linux.vnet.ibm.com
---
 arch/powerpc/include/asm/firmware.h   |1 -
 arch/powerpc/platforms/pseries/firmware.c |8 +++-
 2 files changed, 3 insertions(+), 6 deletions(-)

Index: powerpc/arch/powerpc/include/asm/firmware.h
===
--- powerpc.orig/arch/powerpc/include/asm/firmware.h2013-04-23 
14:17:16.0 -0500
+++ powerpc/arch/powerpc/include/asm/firmware.h 2013-04-23 14:19:54.0 
-0500
@@ -18,7 +18,6 @@
 #include asm/feature-fixups.h
 
 /* firmware feature bitmask values */
-#define FIRMWARE_MAX_FEATURES 63
 
 #define FW_FEATURE_PFT ASM_CONST(0x0001)
 #define FW_FEATURE_TCE ASM_CONST(0x0002)
Index: powerpc/arch/powerpc/platforms/pseries/firmware.c
===
--- powerpc.orig/arch/powerpc/platforms/pseries/firmware.c  2013-04-23 
14:17:16.0 -0500
+++ powerpc/arch/powerpc/platforms/pseries/firmware.c   2013-04-23 
14:46:10.0 -0500
@@ -39,7 +39,7 @@
  * string must match.
  */
 static __initdata firmware_feature_t
-firmware_features_table[FIRMWARE_MAX_FEATURES] = {
+firmware_features_table[] = {
{FW_FEATURE_PFT,hcall-pft},
{FW_FEATURE_TCE,hcall-tce},
{FW_FEATURE_SPRG0,  hcall-sprg0},
@@ -77,12 +77,10 @@
pr_debug( - fw_feature_init()\n);
 
for (s = hypertas; s  hypertas + len; s += strlen(s) + 1) {
-   for (i = 0; i  FIRMWARE_MAX_FEATURES; i++) {
+   for (i = 0; i  ARRAY_SIZE(firmware_features_table); i++) {
const char *name = firmware_features_table[i].name;
size_t size;
-   /* check value against table of strings */
-   if (!name)
-   continue;
+
/*
 * If there is a '*' at the end of name, only check
 * upto there

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev