diff options
author | Holger Schurig <holgerschurig@gmail.com> | 2009-11-25 07:09:32 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-28 15:04:56 -0500 |
commit | 5e8e8b5759566b76bdf36046ae015796676a423c (patch) | |
tree | d42ac73de9f2a5c8abcef37355f579676722388c | |
parent | 76bae570899be34317510d8006d490572152bdfb (diff) |
libertas: introduce mesh.h
Signed-off-by: Holger Schurig <holgerschurig@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/libertas/decl.h | 5 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/dev.h | 12 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/mesh.h | 32 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/wext.h | 5 |
4 files changed, 35 insertions, 19 deletions
diff --git a/drivers/net/wireless/libertas/decl.h b/drivers/net/wireless/libertas/decl.h index 678f7c9f7503..cf3196a7343d 100644 --- a/drivers/net/wireless/libertas/decl.h +++ b/drivers/net/wireless/libertas/decl.h | |||
@@ -27,11 +27,6 @@ netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, | |||
27 | int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *); | 27 | int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *); |
28 | 28 | ||
29 | 29 | ||
30 | /* persistcfg.c */ | ||
31 | void lbs_persist_config_init(struct net_device *net); | ||
32 | void lbs_persist_config_remove(struct net_device *net); | ||
33 | |||
34 | |||
35 | /* main.c */ | 30 | /* main.c */ |
36 | struct lbs_private *lbs_add_card(void *card, struct device *dmdev); | 31 | struct lbs_private *lbs_add_card(void *card, struct device *dmdev); |
37 | void lbs_remove_card(struct lbs_private *priv); | 32 | void lbs_remove_card(struct lbs_private *priv); |
diff --git a/drivers/net/wireless/libertas/dev.h b/drivers/net/wireless/libertas/dev.h index 1a675111300d..6a8d2b291d8c 100644 --- a/drivers/net/wireless/libertas/dev.h +++ b/drivers/net/wireless/libertas/dev.h | |||
@@ -6,6 +6,7 @@ | |||
6 | #ifndef _LBS_DEV_H_ | 6 | #ifndef _LBS_DEV_H_ |
7 | #define _LBS_DEV_H_ | 7 | #define _LBS_DEV_H_ |
8 | 8 | ||
9 | #include "mesh.h" | ||
9 | #include "scan.h" | 10 | #include "scan.h" |
10 | #include "assoc.h" | 11 | #include "assoc.h" |
11 | 12 | ||
@@ -21,17 +22,6 @@ struct sleep_params { | |||
21 | uint16_t sp_reserved; | 22 | uint16_t sp_reserved; |
22 | }; | 23 | }; |
23 | 24 | ||
24 | /* Mesh statistics */ | ||
25 | struct lbs_mesh_stats { | ||
26 | u32 fwd_bcast_cnt; /* Fwd: Broadcast counter */ | ||
27 | u32 fwd_unicast_cnt; /* Fwd: Unicast counter */ | ||
28 | u32 fwd_drop_ttl; /* Fwd: TTL zero */ | ||
29 | u32 fwd_drop_rbt; /* Fwd: Recently Broadcasted */ | ||
30 | u32 fwd_drop_noroute; /* Fwd: No route to Destination */ | ||
31 | u32 fwd_drop_nobuf; /* Fwd: Run out of internal buffers */ | ||
32 | u32 drop_blind; /* Rx: Dropped by blinding table */ | ||
33 | u32 tx_failed_cnt; /* Tx: Failed transmissions */ | ||
34 | }; | ||
35 | 25 | ||
36 | /** Private structure for the MV device */ | 26 | /** Private structure for the MV device */ |
37 | struct lbs_private { | 27 | struct lbs_private { |
diff --git a/drivers/net/wireless/libertas/mesh.h b/drivers/net/wireless/libertas/mesh.h new file mode 100644 index 000000000000..3708b6b386cb --- /dev/null +++ b/drivers/net/wireless/libertas/mesh.h | |||
@@ -0,0 +1,32 @@ | |||
1 | /** | ||
2 | * Contains all definitions needed for the Libertas' MESH implementation. | ||
3 | */ | ||
4 | #ifndef _LBS_MESH_H_ | ||
5 | #define _LBS_MESH_H_ | ||
6 | |||
7 | |||
8 | #include <net/iw_handler.h> | ||
9 | |||
10 | |||
11 | /* Mesh statistics */ | ||
12 | struct lbs_mesh_stats { | ||
13 | u32 fwd_bcast_cnt; /* Fwd: Broadcast counter */ | ||
14 | u32 fwd_unicast_cnt; /* Fwd: Unicast counter */ | ||
15 | u32 fwd_drop_ttl; /* Fwd: TTL zero */ | ||
16 | u32 fwd_drop_rbt; /* Fwd: Recently Broadcasted */ | ||
17 | u32 fwd_drop_noroute; /* Fwd: No route to Destination */ | ||
18 | u32 fwd_drop_nobuf; /* Fwd: Run out of internal buffers */ | ||
19 | u32 drop_blind; /* Rx: Dropped by blinding table */ | ||
20 | u32 tx_failed_cnt; /* Tx: Failed transmissions */ | ||
21 | }; | ||
22 | |||
23 | |||
24 | struct net_device; | ||
25 | |||
26 | void lbs_persist_config_init(struct net_device *net); | ||
27 | void lbs_persist_config_remove(struct net_device *net); | ||
28 | |||
29 | extern struct iw_handler_def mesh_handler_def; | ||
30 | |||
31 | |||
32 | #endif | ||
diff --git a/drivers/net/wireless/libertas/wext.h b/drivers/net/wireless/libertas/wext.h index 7863baf7d234..f3f19fe8c6c6 100644 --- a/drivers/net/wireless/libertas/wext.h +++ b/drivers/net/wireless/libertas/wext.h | |||
@@ -7,12 +7,11 @@ | |||
7 | void lbs_send_disconnect_notification(struct lbs_private *priv); | 7 | void lbs_send_disconnect_notification(struct lbs_private *priv); |
8 | void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event); | 8 | void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event); |
9 | 9 | ||
10 | extern struct iw_handler_def lbs_handler_def; | ||
11 | extern struct iw_handler_def mesh_handler_def; | ||
12 | |||
13 | struct chan_freq_power *lbs_find_cfp_by_band_and_channel( | 10 | struct chan_freq_power *lbs_find_cfp_by_band_and_channel( |
14 | struct lbs_private *priv, | 11 | struct lbs_private *priv, |
15 | u8 band, | 12 | u8 band, |
16 | u16 channel); | 13 | u16 channel); |
17 | 14 | ||
15 | extern struct iw_handler_def lbs_handler_def; | ||
16 | |||
18 | #endif | 17 | #endif |