aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/host.h
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-08-02 11:35:46 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:49:46 -0400
commitffcae953ac021f5051a201c18e133cb0ce38c2b9 (patch)
tree03ed982801c46501daf025c95401494359baf0ed /drivers/net/wireless/libertas/host.h
parent125dcabf724bdfbe55240aef3b35b0ca16f3d61d (diff)
[PATCH] libertas: fix more mixed-case abuse
Mistakently introduced by a previous patch to upper-case all command constants. Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/host.h')
-rw-r--r--drivers/net/wireless/libertas/host.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/net/wireless/libertas/host.h b/drivers/net/wireless/libertas/host.h
index 7af921b0832f..308ccdbed344 100644
--- a/drivers/net/wireless/libertas/host.h
+++ b/drivers/net/wireless/libertas/host.h
@@ -262,16 +262,16 @@
262#define CMD_ACT_TX_POWER_INDEX_LOW 0x0000 262#define CMD_ACT_TX_POWER_INDEX_LOW 0x0000
263 263
264/* Define action or option for CMD_802_11_DATA_RATE */ 264/* Define action or option for CMD_802_11_DATA_RATE */
265#define CMD_ACT_SET_tx_auto 0x0000 265#define CMD_ACT_SET_TX_AUTO 0x0000
266#define CMD_ACT_SET_tx_fix_rate 0x0001 266#define CMD_ACT_SET_TX_FIX_RATE 0x0001
267#define CMD_ACT_GET_tx_rate 0x0002 267#define CMD_ACT_GET_TX_RATE 0x0002
268 268
269#define CMD_ACT_SET_rx 0x0001 269#define CMD_ACT_SET_RX 0x0001
270#define CMD_ACT_SET_tx 0x0002 270#define CMD_ACT_SET_TX 0x0002
271#define CMD_ACT_SET_both 0x0003 271#define CMD_ACT_SET_BOTH 0x0003
272#define CMD_ACT_GET_rx 0x0004 272#define CMD_ACT_GET_RX 0x0004
273#define CMD_ACT_GET_tx 0x0008 273#define CMD_ACT_GET_TX 0x0008
274#define CMD_ACT_GET_both 0x000c 274#define CMD_ACT_GET_BOTH 0x000c
275 275
276/* Define action or option for CMD_802_11_PS_MODE */ 276/* Define action or option for CMD_802_11_PS_MODE */
277#define CMD_TYPE_CAM 0x0000 277#define CMD_TYPE_CAM 0x0000
@@ -279,7 +279,7 @@
279#define CMD_TYPE_FAST_PSP 0x0002 279#define CMD_TYPE_FAST_PSP 0x0002
280 280
281/* Define action or option for CMD_BT_ACCESS */ 281/* Define action or option for CMD_BT_ACCESS */
282enum CMD_BT_ACCESS_opts { 282enum cmd_bt_access_opts {
283 /* The bt commands start at 5 instead of 1 because the old dft commands 283 /* The bt commands start at 5 instead of 1 because the old dft commands
284 * are mapped to 1-4. These old commands are no longer maintained and 284 * are mapped to 1-4. These old commands are no longer maintained and
285 * should not be called. 285 * should not be called.
@@ -293,7 +293,7 @@ enum CMD_BT_ACCESS_opts {
293}; 293};
294 294
295/* Define action or option for CMD_FWT_ACCESS */ 295/* Define action or option for CMD_FWT_ACCESS */
296enum CMD_FWT_ACCESS_opts { 296enum cmd_fwt_access_opts {
297 CMD_ACT_FWT_ACCESS_ADD = 1, 297 CMD_ACT_FWT_ACCESS_ADD = 1,
298 CMD_ACT_FWT_ACCESS_DEL, 298 CMD_ACT_FWT_ACCESS_DEL,
299 CMD_ACT_FWT_ACCESS_LOOKUP, 299 CMD_ACT_FWT_ACCESS_LOOKUP,
@@ -306,7 +306,7 @@ enum CMD_FWT_ACCESS_opts {
306}; 306};
307 307
308/* Define action or option for CMD_MESH_ACCESS */ 308/* Define action or option for CMD_MESH_ACCESS */
309enum CMD_MESH_ACCESS_opts { 309enum cmd_mesh_access_opts {
310 CMD_ACT_MESH_GET_TTL = 1, 310 CMD_ACT_MESH_GET_TTL = 1,
311 CMD_ACT_MESH_SET_TTL, 311 CMD_ACT_MESH_SET_TTL,
312 CMD_ACT_MESH_GET_STATS, 312 CMD_ACT_MESH_GET_STATS,