From: Ajay Singh Date: Tue, 25 Sep 2018 06:23:28 +0000 (+0530) Subject: staging: wilc1000: changes 'val' type to u8 in wilc_cfg_byte struct X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=043c97804bcc4b57145929a891e7ca4c273a82dc;p=android-x86%2Fkernel.git staging: wilc1000: changes 'val' type to u8 in wilc_cfg_byte struct Use the correct datatype for storing the byte value in 'wilc_cfg_byte' struct. Signed-off-by: Ajay Singh Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/wilc_wlan_cfg.h b/drivers/staging/wilc1000/wilc_wlan_cfg.h index 189e617ffec5..082093f5dd4b 100644 --- a/drivers/staging/wilc1000/wilc_wlan_cfg.h +++ b/drivers/staging/wilc1000/wilc_wlan_cfg.h @@ -9,7 +9,7 @@ struct wilc_cfg_byte { u16 id; - u16 val; + u8 val; }; struct wilc_cfg_hword {