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: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7878abdec9
commit
41203a451b
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue