Commit 51471d35 authored by Ahmed S. Darwish's avatar Ahmed S. Darwish Committed by John W. Linville

[PATCH] hostap: Use ARRAY_SIZE macro when appropriate

A patch to use ARRAY_SIZE macro in the Host AP wireless driver.
Signed-off-by: default avatarAhmed S. Darwish <darwish.07@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e7c04fd3
...@@ -2,13 +2,14 @@ ...@@ -2,13 +2,14 @@
#define HOSTAP_H #define HOSTAP_H
#include <linux/ethtool.h> #include <linux/ethtool.h>
#include <linux/kernel.h>
#include "hostap_wlan.h" #include "hostap_wlan.h"
#include "hostap_ap.h" #include "hostap_ap.h"
static const long freq_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442, static const long freq_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442,
2447, 2452, 2457, 2462, 2467, 2472, 2484 }; 2447, 2452, 2457, 2462, 2467, 2472, 2484 };
#define FREQ_COUNT (sizeof(freq_list) / sizeof(freq_list[0])) #define FREQ_COUNT ARRAY_SIZE(freq_list)
/* hostap.c */ /* hostap.c */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment