diff options
Diffstat (limited to 'drivers/net/skfp/srf.c')
-rw-r--r-- | drivers/net/skfp/srf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/skfp/srf.c b/drivers/net/skfp/srf.c index 16573aca8b62..6caf713b744c 100644 --- a/drivers/net/skfp/srf.c +++ b/drivers/net/skfp/srf.c | |||
@@ -43,7 +43,7 @@ static void clear_reported(struct s_smc *smc); | |||
43 | static void smt_send_srf(struct s_smc *smc); | 43 | static void smt_send_srf(struct s_smc *smc); |
44 | static struct s_srf_evc *smt_get_evc(struct s_smc *smc, int code, int index); | 44 | static struct s_srf_evc *smt_get_evc(struct s_smc *smc, int code, int index); |
45 | 45 | ||
46 | #define MAX_EVCS (sizeof(smc->evcs)/sizeof(smc->evcs[0])) | 46 | #define MAX_EVCS ARRAY_SIZE(smc->evcs) |
47 | 47 | ||
48 | struct evc_init { | 48 | struct evc_init { |
49 | u_char code ; | 49 | u_char code ; |
@@ -67,7 +67,7 @@ static const struct evc_init evc_inits[] = { | |||
67 | { SMT_EVENT_PORT_PATH_CHANGE, INDEX_PORT,NUMPHYS,SMT_P4053 } , | 67 | { SMT_EVENT_PORT_PATH_CHANGE, INDEX_PORT,NUMPHYS,SMT_P4053 } , |
68 | } ; | 68 | } ; |
69 | 69 | ||
70 | #define MAX_INIT_EVC (sizeof(evc_inits)/sizeof(evc_inits[0])) | 70 | #define MAX_INIT_EVC ARRAY_SIZE(evc_inits) |
71 | 71 | ||
72 | void smt_init_evc(struct s_smc *smc) | 72 | void smt_init_evc(struct s_smc *smc) |
73 | { | 73 | { |