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:
Ajay Singh 2018-08-01 16:40:59 +05:30 committed by Greg Kroah-Hartman
parent 7878abdec9
commit 41203a451b
1 changed files with 2 additions and 2 deletions

View File

@ -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;
};