Commit 31452420 authored by Zhu Yi's avatar Zhu Yi Committed by John W. Linville

iwmc3200wifi: fix misuse of le16_to_cpu

Also mark some functions static.
Signed-off-by: default avatarZhu Yi <yi.zhu@intel.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c7436273
...@@ -128,8 +128,8 @@ static void iwm_disconnect_work(struct work_struct *work) ...@@ -128,8 +128,8 @@ static void iwm_disconnect_work(struct work_struct *work)
cfg80211_disconnected(iwm_to_ndev(iwm), 0, NULL, 0, GFP_KERNEL); cfg80211_disconnected(iwm_to_ndev(iwm), 0, NULL, 0, GFP_KERNEL);
} }
int __iwm_up(struct iwm_priv *iwm); static int __iwm_up(struct iwm_priv *iwm);
int __iwm_down(struct iwm_priv *iwm); static int __iwm_down(struct iwm_priv *iwm);
static void iwm_reset_worker(struct work_struct *work) static void iwm_reset_worker(struct work_struct *work)
{ {
...@@ -559,7 +559,7 @@ static int iwm_channels_init(struct iwm_priv *iwm) ...@@ -559,7 +559,7 @@ static int iwm_channels_init(struct iwm_priv *iwm)
return 0; return 0;
} }
int __iwm_up(struct iwm_priv *iwm) static int __iwm_up(struct iwm_priv *iwm)
{ {
int ret; int ret;
struct iwm_notif *notif_reboot, *notif_ack = NULL; struct iwm_notif *notif_reboot, *notif_ack = NULL;
...@@ -693,7 +693,7 @@ int iwm_up(struct iwm_priv *iwm) ...@@ -693,7 +693,7 @@ int iwm_up(struct iwm_priv *iwm)
return ret; return ret;
} }
int __iwm_down(struct iwm_priv *iwm) static int __iwm_down(struct iwm_priv *iwm)
{ {
int ret; int ret;
......
...@@ -850,7 +850,7 @@ static int iwm_mlme_mgt_frame(struct iwm_priv *iwm, u8 *buf, ...@@ -850,7 +850,7 @@ static int iwm_mlme_mgt_frame(struct iwm_priv *iwm, u8 *buf,
iwm->resp_ie_len, GFP_KERNEL); iwm->resp_ie_len, GFP_KERNEL);
} else { } else {
IWM_ERR(iwm, "Unsupported management frame: 0x%x", IWM_ERR(iwm, "Unsupported management frame: 0x%x",
cpu_to_le16(mgt->frame_control)); le16_to_cpu(mgt->frame_control));
return 0; return 0;
} }
......
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