mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-05 07:35:04 +07:00
staging: wilc1000: replace u8 with int.
This patch changes data type of variable i from u8 to int. It is used as index of an array to print its content. It's better to use as data type of int. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a558ac6c97
commit
fd74146158
@ -3148,7 +3148,7 @@ int host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv,
|
||||
{
|
||||
int result = 0;
|
||||
struct host_if_msg msg;
|
||||
u8 i;
|
||||
int i;
|
||||
|
||||
if (!hif_drv) {
|
||||
PRINT_ER("driver is null\n");
|
||||
|
Loading…
Reference in New Issue
Block a user