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/hostcmd.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/hostcmd.h')
-rw-r--r-- | drivers/net/wireless/libertas/hostcmd.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/libertas/hostcmd.h b/drivers/net/wireless/libertas/hostcmd.h index e1045dc02cce..6477ce0839d7 100644 --- a/drivers/net/wireless/libertas/hostcmd.h +++ b/drivers/net/wireless/libertas/hostcmd.h | |||
@@ -2,8 +2,8 @@ | |||
2 | * This file contains the function prototypes, data structure | 2 | * This file contains the function prototypes, data structure |
3 | * and defines for all the host/station commands | 3 | * and defines for all the host/station commands |
4 | */ | 4 | */ |
5 | #ifndef __HOSTCMD__H | 5 | #ifndef _LBS_HOSTCMD_H |
6 | #define __HOSTCMD__H | 6 | #define _LBS_HOSTCMD_H |
7 | 7 | ||
8 | #include <linux/wireless.h> | 8 | #include <linux/wireless.h> |
9 | #include "11d.h" | 9 | #include "11d.h" |
@@ -86,13 +86,13 @@ struct cmd_ctrl_node { | |||
86 | /* Generic structure to hold all key types. */ | 86 | /* Generic structure to hold all key types. */ |
87 | struct enc_key { | 87 | struct enc_key { |
88 | u16 len; | 88 | u16 len; |
89 | u16 flags; /* KEY_INFO_* from wlan_defs.h */ | 89 | u16 flags; /* KEY_INFO_* from defs.h */ |
90 | u16 type; /* KEY_TYPE_* from wlan_defs.h */ | 90 | u16 type; /* KEY_TYPE_* from defs.h */ |
91 | u8 key[32]; | 91 | u8 key[32]; |
92 | }; | 92 | }; |
93 | 93 | ||
94 | /* wlan_offset_value */ | 94 | /* lbs_offset_value */ |
95 | struct wlan_offset_value { | 95 | struct lbs_offset_value { |
96 | u32 offset; | 96 | u32 offset; |
97 | u32 value; | 97 | u32 value; |
98 | }; | 98 | }; |