staging: wilc1000: rename ps8Rssi in wilc_get_rssi

This patch renames ps8Rssi to rssi_level to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chaehyun Lim 2015-12-24 16:52:37 +09:00 committed by Greg Kroah-Hartman
parent e16aed64cf
commit 652bb5e888
2 changed files with 4 additions and 4 deletions

View file

@ -3628,7 +3628,7 @@ s32 wilc_get_inactive_time(struct wilc_vif *vif, const u8 *mac,
return result;
}
int wilc_get_rssi(struct wilc_vif *vif, s8 *ps8Rssi)
int wilc_get_rssi(struct wilc_vif *vif, s8 *rssi_level)
{
int result = 0;
struct host_if_msg msg;
@ -3646,12 +3646,12 @@ int wilc_get_rssi(struct wilc_vif *vif, s8 *ps8Rssi)
down(&hif_drv->sem_get_rssi);
if (!ps8Rssi) {
if (!rssi_level) {
PRINT_ER("RSS pointer value is null");
return -EFAULT;
}
*ps8Rssi = rssi;
*rssi_level = rssi;
return result;
}

View file

@ -334,7 +334,7 @@ int wilc_set_join_req(struct wilc_vif *vif, u8 *bssid, const u8 *ssid,
int wilc_flush_join_req(struct wilc_vif *vif);
int wilc_disconnect(struct wilc_vif *vif, u16 reason_code);
int wilc_set_mac_chnl_num(struct wilc_vif *vif, u8 channel);
int wilc_get_rssi(struct wilc_vif *vif, s8 *ps8Rssi);
int wilc_get_rssi(struct wilc_vif *vif, s8 *rssi_level);
s32 wilc_scan(struct wilc_vif *vif, u8 u8ScanSource, u8 u8ScanType,
u8 *pu8ChnlFreqList, u8 u8ChnlListLen, const u8 *pu8IEs,
size_t IEsLen, wilc_scan_result ScanResult, void *pvUserArg,