diff options
author | Ahmed S. Darwish <darwish.07@gmail.com> | 2007-02-05 11:58:52 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-02-14 15:45:04 -0500 |
commit | 51471d35cafd8b793c835f1627d6a8c53d360e1f (patch) | |
tree | 38d93b20a9762847af4990c71e5e1c4d89e0e816 /drivers/net/wireless/hostap/hostap.h | |
parent | e7c04fd3d00f69ce1cad5418a08016da484ea86a (diff) |
[PATCH] hostap: Use ARRAY_SIZE macro when appropriate
A patch to use ARRAY_SIZE macro in the Host AP wireless driver.
Signed-off-by: Ahmed S. Darwish <darwish.07@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/hostap/hostap.h')
-rw-r--r-- | drivers/net/wireless/hostap/hostap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/hostap/hostap.h b/drivers/net/wireless/hostap/hostap.h index e89c890d16fd..ef37a75d550b 100644 --- a/drivers/net/wireless/hostap/hostap.h +++ b/drivers/net/wireless/hostap/hostap.h | |||
@@ -2,13 +2,14 @@ | |||
2 | #define HOSTAP_H | 2 | #define HOSTAP_H |
3 | 3 | ||
4 | #include <linux/ethtool.h> | 4 | #include <linux/ethtool.h> |
5 | #include <linux/kernel.h> | ||
5 | 6 | ||
6 | #include "hostap_wlan.h" | 7 | #include "hostap_wlan.h" |
7 | #include "hostap_ap.h" | 8 | #include "hostap_ap.h" |
8 | 9 | ||
9 | static const long freq_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442, | 10 | static const long freq_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442, |
10 | 2447, 2452, 2457, 2462, 2467, 2472, 2484 }; | 11 | 2447, 2452, 2457, 2462, 2467, 2472, 2484 }; |
11 | #define FREQ_COUNT (sizeof(freq_list) / sizeof(freq_list[0])) | 12 | #define FREQ_COUNT ARRAY_SIZE(freq_list) |
12 | 13 | ||
13 | /* hostap.c */ | 14 | /* hostap.c */ |
14 | 15 | ||