Commit 60c46bf8 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by John W. Linville

iwlegacy: fix sparse warnings

Make local functions and tables static. Make ops table
Mark 3945 ops as read_mostly.
Signed-off-by: default avatarStephen Hemminger <stephen@networkplumber.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4363b577
...@@ -3475,7 +3475,7 @@ static struct attribute_group il3945_attribute_group = { ...@@ -3475,7 +3475,7 @@ static struct attribute_group il3945_attribute_group = {
.attrs = il3945_sysfs_entries, .attrs = il3945_sysfs_entries,
}; };
struct ieee80211_ops il3945_mac_ops = { static struct ieee80211_ops il3945_mac_ops __read_mostly = {
.tx = il3945_mac_tx, .tx = il3945_mac_tx,
.start = il3945_mac_start, .start = il3945_mac_start,
.stop = il3945_mac_stop, .stop = il3945_mac_stop,
......
...@@ -612,7 +612,7 @@ il4965_pass_packet_to_mac80211(struct il_priv *il, struct ieee80211_hdr *hdr, ...@@ -612,7 +612,7 @@ il4965_pass_packet_to_mac80211(struct il_priv *il, struct ieee80211_hdr *hdr,
/* Called for N_RX (legacy ABG frames), or /* Called for N_RX (legacy ABG frames), or
* N_RX_MPDU (HT high-throughput N frames). */ * N_RX_MPDU (HT high-throughput N frames). */
void static void
il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb) il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
{ {
struct ieee80211_hdr *header; struct ieee80211_hdr *header;
...@@ -744,7 +744,7 @@ il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb) ...@@ -744,7 +744,7 @@ il4965_hdl_rx(struct il_priv *il, struct il_rx_buf *rxb)
/* Cache phy data (Rx signal strength, etc) for HT frame (N_RX_PHY). /* Cache phy data (Rx signal strength, etc) for HT frame (N_RX_PHY).
* This will be used later in il_hdl_rx() for N_RX_MPDU. */ * This will be used later in il_hdl_rx() for N_RX_MPDU. */
void static void
il4965_hdl_rx_phy(struct il_priv *il, struct il_rx_buf *rxb) il4965_hdl_rx_phy(struct il_priv *il, struct il_rx_buf *rxb)
{ {
struct il_rx_pkt *pkt = rxb_addr(rxb); struct il_rx_pkt *pkt = rxb_addr(rxb);
...@@ -1250,7 +1250,7 @@ il4965_dump_fh(struct il_priv *il, char **buf, bool display) ...@@ -1250,7 +1250,7 @@ il4965_dump_fh(struct il_priv *il, char **buf, bool display)
return 0; return 0;
} }
void static void
il4965_hdl_missed_beacon(struct il_priv *il, struct il_rx_buf *rxb) il4965_hdl_missed_beacon(struct il_priv *il, struct il_rx_buf *rxb)
{ {
struct il_rx_pkt *pkt = rxb_addr(rxb); struct il_rx_pkt *pkt = rxb_addr(rxb);
...@@ -1357,7 +1357,7 @@ il4965_accumulative_stats(struct il_priv *il, __le32 * stats) ...@@ -1357,7 +1357,7 @@ il4965_accumulative_stats(struct il_priv *il, __le32 * stats)
} }
#endif #endif
void static void
il4965_hdl_stats(struct il_priv *il, struct il_rx_buf *rxb) il4965_hdl_stats(struct il_priv *il, struct il_rx_buf *rxb)
{ {
const int recalib_seconds = 60; const int recalib_seconds = 60;
...@@ -1399,7 +1399,7 @@ il4965_hdl_stats(struct il_priv *il, struct il_rx_buf *rxb) ...@@ -1399,7 +1399,7 @@ il4965_hdl_stats(struct il_priv *il, struct il_rx_buf *rxb)
il4965_temperature_calib(il); il4965_temperature_calib(il);
} }
void static void
il4965_hdl_c_stats(struct il_priv *il, struct il_rx_buf *rxb) il4965_hdl_c_stats(struct il_priv *il, struct il_rx_buf *rxb)
{ {
struct il_rx_pkt *pkt = rxb_addr(rxb); struct il_rx_pkt *pkt = rxb_addr(rxb);
...@@ -2050,7 +2050,7 @@ il4965_txq_ctx_reset(struct il_priv *il) ...@@ -2050,7 +2050,7 @@ il4965_txq_ctx_reset(struct il_priv *il)
il_tx_queue_reset(il, txq_id); il_tx_queue_reset(il, txq_id);
} }
void static void
il4965_txq_ctx_unmap(struct il_priv *il) il4965_txq_ctx_unmap(struct il_priv *il)
{ {
int txq_id; int txq_id;
...@@ -2896,7 +2896,7 @@ il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags, ...@@ -2896,7 +2896,7 @@ il4965_hwrate_to_tx_control(struct il_priv *il, u32 rate_n_flags,
* Handles block-acknowledge notification from device, which reports success * Handles block-acknowledge notification from device, which reports success
* of frames sent via aggregation. * of frames sent via aggregation.
*/ */
void static void
il4965_hdl_compressed_ba(struct il_priv *il, struct il_rx_buf *rxb) il4965_hdl_compressed_ba(struct il_priv *il, struct il_rx_buf *rxb)
{ {
struct il_rx_pkt *pkt = rxb_addr(rxb); struct il_rx_pkt *pkt = rxb_addr(rxb);
...@@ -6317,7 +6317,7 @@ il4965_tx_queue_set_status(struct il_priv *il, struct il_tx_queue *txq, ...@@ -6317,7 +6317,7 @@ il4965_tx_queue_set_status(struct il_priv *il, struct il_tx_queue *txq,
scd_retry ? "BA" : "AC", txq_id, tx_fifo_id); scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
} }
const struct ieee80211_ops il4965_mac_ops = { static const struct ieee80211_ops il4965_mac_ops = {
.tx = il4965_mac_tx, .tx = il4965_mac_tx,
.start = il4965_mac_start, .start = il4965_mac_start,
.stop = il4965_mac_stop, .stop = il4965_mac_stop,
......
...@@ -1122,7 +1122,7 @@ il_set_power(struct il_priv *il, struct il_powertable_cmd *cmd) ...@@ -1122,7 +1122,7 @@ il_set_power(struct il_priv *il, struct il_powertable_cmd *cmd)
sizeof(struct il_powertable_cmd), cmd); sizeof(struct il_powertable_cmd), cmd);
} }
int static int
il_power_set_mode(struct il_priv *il, struct il_powertable_cmd *cmd, bool force) il_power_set_mode(struct il_priv *il, struct il_powertable_cmd *cmd, bool force)
{ {
int ret; int ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment