diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2016-05-23 06:49:21 -0400 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-06-03 22:13:12 -0700 |
commit | b7707b043ebbf88fe0fb49442db9316ded3a0740 (patch) | |
tree | 13adaba016b9695f0f33c17f898207d88a671599 /arch/powerpc/cpu/mpc85xx/ether_fcc.c | |
parent | 534992827756c3a1ab49823ca487702a954fe433 (diff) |
arch/powerpc: Simplify some calculations using ARRAY_SIZE() macro.
Replace a number of array length calculations with the ARRAY_SIZE()
macro, for clarity.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/ether_fcc.c')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/ether_fcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/ether_fcc.c b/arch/powerpc/cpu/mpc85xx/ether_fcc.c index 14358aeb03..51f1beef51 100644 --- a/arch/powerpc/cpu/mpc85xx/ether_fcc.c +++ b/arch/powerpc/cpu/mpc85xx/ether_fcc.c @@ -424,7 +424,7 @@ int fec_initialize(bd_t *bis) struct eth_device* dev; int i; - for (i = 0; i < sizeof(ether_fcc_info) / sizeof(ether_fcc_info[0]); i++) + for (i = 0; i < ARRAY_SIZE(ether_fcc_info); i++) { dev = (struct eth_device*) malloc(sizeof *dev); memset(dev, 0, sizeof *dev); |