diff options
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_ioctl.c')
-rw-r--r-- | drivers/net/wireless/hostap/hostap_ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/hostap/hostap_ioctl.c b/drivers/net/wireless/hostap/hostap_ioctl.c index d58ac84f4e9e..730b3541e325 100644 --- a/drivers/net/wireless/hostap/hostap_ioctl.c +++ b/drivers/net/wireless/hostap/hostap_ioctl.c | |||
@@ -3976,9 +3976,9 @@ static const iw_handler prism2_private_handler[] = | |||
3976 | 3976 | ||
3977 | const struct iw_handler_def hostap_iw_handler_def = | 3977 | const struct iw_handler_def hostap_iw_handler_def = |
3978 | { | 3978 | { |
3979 | .num_standard = sizeof(prism2_handler) / sizeof(iw_handler), | 3979 | .num_standard = ARRAY_SIZE(prism2_handler), |
3980 | .num_private = sizeof(prism2_private_handler) / sizeof(iw_handler), | 3980 | .num_private = ARRAY_SIZE(prism2_private_handler), |
3981 | .num_private_args = sizeof(prism2_priv) / sizeof(struct iw_priv_args), | 3981 | .num_private_args = ARRAY_SIZE(prism2_priv), |
3982 | .standard = (iw_handler *) prism2_handler, | 3982 | .standard = (iw_handler *) prism2_handler, |
3983 | .private = (iw_handler *) prism2_private_handler, | 3983 | .private = (iw_handler *) prism2_private_handler, |
3984 | .private_args = (struct iw_priv_args *) prism2_priv, | 3984 | .private_args = (struct iw_priv_args *) prism2_priv, |