Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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)
			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)) {
+1 −1
Original line number Original line Diff line number Diff line
@@ -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 {
+138 −138

File changed.

Preview size limit exceeded, changes collapsed.