Commit 900bb4a6 authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman

staging: wilc1000: rename the member variable, ps8WidVal of wid

This patch renames ps8WidVal of struct wid to val.
Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2fd3e443
...@@ -616,7 +616,7 @@ s32 send_config_pkt(u8 mode, struct wid *wids, u32 count, u32 drv) ...@@ -616,7 +616,7 @@ s32 send_config_pkt(u8 mode, struct wid *wids, u32 count, u32 drv)
for (counter = 0; counter < count; counter++) { for (counter = 0; counter < count; counter++) {
wids[counter].size = wilc_wlan_cfg_get_val( wids[counter].size = wilc_wlan_cfg_get_val(
wids[counter].id, wids[counter].id,
wids[counter].ps8WidVal, wids[counter].val,
wids[counter].size); wids[counter].size);
} }
...@@ -625,7 +625,7 @@ s32 send_config_pkt(u8 mode, struct wid *wids, u32 count, u32 drv) ...@@ -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); PRINT_D(CORECONFIG_DBG, "Sending config SET PACKET WID:%x\n", wids[counter].id);
if (!wilc_wlan_cfg_set(!counter, if (!wilc_wlan_cfg_set(!counter,
wids[counter].id, wids[counter].id,
wids[counter].ps8WidVal, wids[counter].val,
wids[counter].size, wids[counter].size,
(counter == count - 1), (counter == count - 1),
drv)) { drv)) {
......
...@@ -74,7 +74,7 @@ struct wid { ...@@ -74,7 +74,7 @@ struct wid {
u16 id; u16 id;
enum WID_TYPE type; enum WID_TYPE type;
s32 size; s32 size;
s8 *ps8WidVal; s8 *val;
}; };
typedef struct { typedef struct {
......
This diff is collapsed.
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