Skip to content

Commit

Permalink
mwifiex: remove unused radio_on variable and macros
Browse files Browse the repository at this point in the history
The radio_on variable is defined but never used.

Signed-off-by: Marc Yang <yangyang@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Marc Yang authored and John W. Linville committed Apr 4, 2011
1 parent f986b6d commit fd2e401
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions drivers/net/wireless/mwifiex/fw.h
Original file line number Diff line number Diff line change
Expand Up @@ -875,9 +875,6 @@ struct host_cmd_ds_802_11_snmp_mib {
u8 value[1];
} __packed;

#define RADIO_ON 0x01
#define RADIO_OFF 0x00

struct mwifiex_rate_scope {
__le16 type;
__le16 length;
Expand Down
1 change: 0 additions & 1 deletion drivers/net/wireless/mwifiex/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ static void mwifiex_init_adapter(struct mwifiex_adapter *adapter)
memset(adapter->bcn_buf, 0, sizeof(adapter->bcn_buf));
adapter->bcn_buf_end = adapter->bcn_buf;

adapter->radio_on = RADIO_ON;
adapter->multiple_dtim = 1;

adapter->local_listen_interval = 0; /* default value in firmware
Expand Down
1 change: 0 additions & 1 deletion drivers/net/wireless/mwifiex/ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ struct mwifiex_bss_info {
u32 bss_chan;
u32 region_code;
u32 media_connected;
u32 radio_on;
u32 max_power_level;
u32 min_power_level;
u32 adhoc_state;
Expand Down
1 change: 0 additions & 1 deletion drivers/net/wireless/mwifiex/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,6 @@ struct mwifiex_adapter {
u16 curr_tx_buf_size;
u32 ioport;
enum MWIFIEX_HARDWARE_STATUS hw_status;
u16 radio_on;
u16 number_of_antenna;
u32 fw_cap_info;
/* spin lock for interrupt handling */
Expand Down
3 changes: 0 additions & 3 deletions drivers/net/wireless/mwifiex/sta_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -790,9 +790,6 @@ int mwifiex_get_bss_info(struct mwifiex_private *priv,
/* Connection status */
info->media_connected = priv->media_connected;

/* Radio status */
info->radio_on = adapter->radio_on;

/* Tx power information */
info->max_power_level = priv->max_tx_power_level;
info->min_power_level = priv->min_tx_power_level;
Expand Down

0 comments on commit fd2e401

Please sign in to comment.