forked from Minki/linux
iwmc3200wifi: fix misuse of le16_to_cpu
Also mark some functions static. Signed-off-by: Zhu Yi <yi.zhu@intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
c743627388
commit
31452420ca
@ -128,8 +128,8 @@ static void iwm_disconnect_work(struct work_struct *work)
|
||||
cfg80211_disconnected(iwm_to_ndev(iwm), 0, NULL, 0, GFP_KERNEL);
|
||||
}
|
||||
|
||||
int __iwm_up(struct iwm_priv *iwm);
|
||||
int __iwm_down(struct iwm_priv *iwm);
|
||||
static int __iwm_up(struct iwm_priv *iwm);
|
||||
static int __iwm_down(struct iwm_priv *iwm);
|
||||
|
||||
static void iwm_reset_worker(struct work_struct *work)
|
||||
{
|
||||
@ -559,7 +559,7 @@ static int iwm_channels_init(struct iwm_priv *iwm)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __iwm_up(struct iwm_priv *iwm)
|
||||
static int __iwm_up(struct iwm_priv *iwm)
|
||||
{
|
||||
int ret;
|
||||
struct iwm_notif *notif_reboot, *notif_ack = NULL;
|
||||
@ -693,7 +693,7 @@ int iwm_up(struct iwm_priv *iwm)
|
||||
return ret;
|
||||
}
|
||||
|
||||
int __iwm_down(struct iwm_priv *iwm)
|
||||
static int __iwm_down(struct iwm_priv *iwm)
|
||||
{
|
||||
int ret;
|
||||
|
||||
|
@ -850,7 +850,7 @@ static int iwm_mlme_mgt_frame(struct iwm_priv *iwm, u8 *buf,
|
||||
iwm->resp_ie_len, GFP_KERNEL);
|
||||
} else {
|
||||
IWM_ERR(iwm, "Unsupported management frame: 0x%x",
|
||||
cpu_to_le16(mgt->frame_control));
|
||||
le16_to_cpu(mgt->frame_control));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user