Commit 41203a45 authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: use 'u16' data type for config id parameter



Cleanup patch to use the correct data type 'u16' for keeping the WID
value in 'wilc_cfg_word' & 'wilc_cfg_str' structure.

Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7878abde
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,12 +22,12 @@ struct wilc_cfg_hword {
};

struct wilc_cfg_word {
	u32 id;
	u16 id;
	u32 val;
};

struct wilc_cfg_str {
	u32 id;
	u16 id;
	u8 *str;
};