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: v3.5-rc1~109^2~477 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4133099b3e1ffd63476ede836a5a10aa26fa93d0;p=platform%2Fkernel%2Flinux-exynos.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 dafea1e..43464f0 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)