diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2007-11-15 18:05:47 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:04:46 -0500 |
commit | 1007832103d016d1563fab71d4cf2b057a0bcceb (patch) | |
tree | 3b5080b01bee6e1f98cc9489382c534e963ac748 /drivers/net/wireless/libertas/join.h | |
parent | 9a62f73b1a3bbd35a6f84fcd6636e672b09981ec (diff) |
libertas: move to uniform lbs_/LBS_ namespace
This patch unifies the namespace of variables, functions defines
and structures. It does:
- rename libertas_XXX to lbs_XXX
- rename LIBERTAS_XXX to lbs_XXX
- rename wlan_XXX to lbs_XXX
- rename WLAN_XXX to LBS_XXX (but only those that were
defined in libertas-local *.h files, e.g. not defines
from net/ieee80211.h)
While passing, I fixed some checkpatch.pl errors too.
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Acked-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/join.h')
-rw-r--r-- | drivers/net/wireless/libertas/join.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/drivers/net/wireless/libertas/join.h b/drivers/net/wireless/libertas/join.h index 894a072b9f8d..5c2b2df5e577 100644 --- a/drivers/net/wireless/libertas/join.h +++ b/drivers/net/wireless/libertas/join.h | |||
@@ -2,52 +2,52 @@ | |||
2 | * Interface for the wlan infrastructure and adhoc join routines | 2 | * Interface for the wlan infrastructure and adhoc join routines |
3 | * | 3 | * |
4 | * Driver interface functions and type declarations for the join module | 4 | * Driver interface functions and type declarations for the join module |
5 | * implemented in wlan_join.c. Process all start/join requests for | 5 | * implemented in join.c. Process all start/join requests for |
6 | * both adhoc and infrastructure networks | 6 | * both adhoc and infrastructure networks |
7 | */ | 7 | */ |
8 | #ifndef _WLAN_JOIN_H | 8 | #ifndef _LBS_JOIN_H |
9 | #define _WLAN_JOIN_H | 9 | #define _LBS_JOIN_H |
10 | 10 | ||
11 | #include "defs.h" | 11 | #include "defs.h" |
12 | #include "dev.h" | 12 | #include "dev.h" |
13 | 13 | ||
14 | struct cmd_ds_command; | 14 | struct cmd_ds_command; |
15 | int libertas_cmd_80211_authenticate(wlan_private * priv, | 15 | int lbs_cmd_80211_authenticate(lbs_private *priv, |
16 | struct cmd_ds_command *cmd, | 16 | struct cmd_ds_command *cmd, |
17 | void *pdata_buf); | 17 | void *pdata_buf); |
18 | int libertas_cmd_80211_ad_hoc_join(wlan_private * priv, | 18 | int lbs_cmd_80211_ad_hoc_join(lbs_private *priv, |
19 | struct cmd_ds_command *cmd, | 19 | struct cmd_ds_command *cmd, |
20 | void *pdata_buf); | 20 | void *pdata_buf); |
21 | int libertas_cmd_80211_ad_hoc_stop(wlan_private * priv, | 21 | int lbs_cmd_80211_ad_hoc_stop(lbs_private *priv, |
22 | struct cmd_ds_command *cmd); | 22 | struct cmd_ds_command *cmd); |
23 | int libertas_cmd_80211_ad_hoc_start(wlan_private * priv, | 23 | int lbs_cmd_80211_ad_hoc_start(lbs_private *priv, |
24 | struct cmd_ds_command *cmd, | 24 | struct cmd_ds_command *cmd, |
25 | void *pdata_buf); | 25 | void *pdata_buf); |
26 | int libertas_cmd_80211_deauthenticate(wlan_private * priv, | 26 | int lbs_cmd_80211_deauthenticate(lbs_private *priv, |
27 | struct cmd_ds_command *cmd); | 27 | struct cmd_ds_command *cmd); |
28 | int libertas_cmd_80211_associate(wlan_private * priv, | 28 | int lbs_cmd_80211_associate(lbs_private *priv, |
29 | struct cmd_ds_command *cmd, | 29 | struct cmd_ds_command *cmd, |
30 | void *pdata_buf); | 30 | void *pdata_buf); |
31 | 31 | ||
32 | int libertas_ret_80211_ad_hoc_start(wlan_private * priv, | 32 | int lbs_ret_80211_ad_hoc_start(lbs_private *priv, |
33 | struct cmd_ds_command *resp); | 33 | struct cmd_ds_command *resp); |
34 | int libertas_ret_80211_ad_hoc_stop(wlan_private * priv, | 34 | int lbs_ret_80211_ad_hoc_stop(lbs_private *priv, |
35 | struct cmd_ds_command *resp); | 35 | struct cmd_ds_command *resp); |
36 | int libertas_ret_80211_disassociate(wlan_private * priv, | 36 | int lbs_ret_80211_disassociate(lbs_private *priv, |
37 | struct cmd_ds_command *resp); | 37 | struct cmd_ds_command *resp); |
38 | int libertas_ret_80211_associate(wlan_private * priv, | 38 | int lbs_ret_80211_associate(lbs_private *priv, |
39 | struct cmd_ds_command *resp); | 39 | struct cmd_ds_command *resp); |
40 | 40 | ||
41 | int libertas_start_adhoc_network(wlan_private * priv, | 41 | int lbs_start_adhoc_network(lbs_private *priv, |
42 | struct assoc_request * assoc_req); | 42 | struct assoc_request * assoc_req); |
43 | int libertas_join_adhoc_network(wlan_private * priv, | 43 | int lbs_join_adhoc_network(lbs_private *priv, |
44 | struct assoc_request * assoc_req); | 44 | struct assoc_request * assoc_req); |
45 | int libertas_stop_adhoc_network(wlan_private * priv); | 45 | int lbs_stop_adhoc_network(lbs_private *priv); |
46 | 46 | ||
47 | int libertas_send_deauthentication(wlan_private * priv); | 47 | int lbs_send_deauthentication(lbs_private *priv); |
48 | 48 | ||
49 | int wlan_associate(wlan_private * priv, struct assoc_request * assoc_req); | 49 | int lbs_associate(lbs_private *priv, struct assoc_request *assoc_req); |
50 | 50 | ||
51 | void libertas_unset_basic_rate_flags(u8 * rates, size_t len); | 51 | void lbs_unset_basic_rate_flags(u8 *rates, size_t len); |
52 | 52 | ||
53 | #endif | 53 | #endif |