summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/coreconfigurator.c
diff options
context:
space:
mode:
authorLeo Kim2015-10-12 09:55:46 +0200
committerGreg Kroah-Hartman2015-10-13 05:58:01 +0200
commit900bb4a6523e7fa0db8aee0e84036a6de2da23fd (patch)
tree74eed33f9cc3ebfc4c654ea6dad4d21925b84a4c /drivers/staging/wilc1000/coreconfigurator.c
parentstaging: wilc1000: rename the member variable, s32ValueSize of wid (diff)
downloadkernel-qcow2-linux-900bb4a6523e7fa0db8aee0e84036a6de2da23fd.tar.gz
kernel-qcow2-linux-900bb4a6523e7fa0db8aee0e84036a6de2da23fd.tar.xz
kernel-qcow2-linux-900bb4a6523e7fa0db8aee0e84036a6de2da23fd.zip
staging: wilc1000: rename the member variable, ps8WidVal of wid
This patch renames ps8WidVal of struct wid to val. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Tony Cho <tony.cho@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000/coreconfigurator.c')
-rw-r--r--drivers/staging/wilc1000/coreconfigurator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers/staging/wilc1000/coreconfigurator.c
index e51ae3a4439e..39e463c6f9a8 100644
--- a/drivers/staging/wilc1000/coreconfigurator.c
+++ b/drivers/staging/wilc1000/coreconfigurator.c
@@ -616,7 +616,7 @@ s32 send_config_pkt(u8 mode, struct wid *wids, u32 count, u32 drv)
for (counter = 0; counter < count; counter++) {
wids[counter].size = wilc_wlan_cfg_get_val(
wids[counter].id,
- wids[counter].ps8WidVal,
+ wids[counter].val,
wids[counter].size);
}
@@ -625,7 +625,7 @@ s32 send_config_pkt(u8 mode, struct wid *wids, u32 count, u32 drv)
PRINT_D(CORECONFIG_DBG, "Sending config SET PACKET WID:%x\n", wids[counter].id);
if (!wilc_wlan_cfg_set(!counter,
wids[counter].id,
- wids[counter].ps8WidVal,
+ wids[counter].val,
wids[counter].size,
(counter == count - 1),
drv)) {