From: Jim Cromie Date: Tue, 10 Apr 2012 14:56:09 +0000 (+0000) Subject: enic: replace open-coded ARRAY_SIZE with macro X-Git-Tag: next-20120417~45^2~49 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4133099b3e1ffd63476ede836a5a10aa26fa93d0;p=karo-tx-linux.git enic: replace open-coded ARRAY_SIZE with macro Signed-off-by: Jim Cromie Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/cisco/enic/enic_pp.c b/drivers/net/ethernet/cisco/enic/enic_pp.c index dafea1ecb7b1..43464f0a4f99 100644 --- a/drivers/net/ethernet/cisco/enic/enic_pp.c +++ b/drivers/net/ethernet/cisco/enic/enic_pp.c @@ -184,7 +184,7 @@ static int (*enic_pp_handlers[])(struct enic *enic, int vf, }; static const int enic_pp_handlers_count = - sizeof(enic_pp_handlers)/sizeof(*enic_pp_handlers); + ARRAY_SIZE(enic_pp_handlers); static int enic_pp_preassociate(struct enic *enic, int vf, struct enic_port_profile *prev_pp, int *restore_pp)