diff options
Diffstat (limited to 'drivers/net/fsl_mcdmafec.c')
| -rw-r--r-- | drivers/net/fsl_mcdmafec.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/net/fsl_mcdmafec.c b/drivers/net/fsl_mcdmafec.c index 1ad952d3a..6391f9b32 100644 --- a/drivers/net/fsl_mcdmafec.c +++ b/drivers/net/fsl_mcdmafec.c @@ -504,7 +504,7 @@ int mcdmafec_initialize(bd_t * bis)  	u32 tmp = CONFIG_SYS_INTSRAM + 0x2000;  #endif -	for (i = 0; i < sizeof(fec_info) / sizeof(fec_info[0]); i++) { +	for (i = 0; i < ARRAY_SIZE(fec_info); i++) {  		dev =  		    (struct eth_device *)memalign(CONFIG_SYS_CACHELINE_SIZE, |