]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: ks7010: change local variable type in ks7010_rw_function
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Fri, 4 May 2018 04:16:12 +0000 (06:16 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 May 2018 01:58:37 +0000 (18:58 -0700)
Local variable 'byte' in ks7010_rw_function is declared as unsigned
char and can be declared as u8 which is preferred. It is being used
in ks7010_sdio_readb which is already expecting an u8.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks7010_sdio.c

index 3574a229202171852e6406929731793d9d1fb108..dab44bb7a1c9a086be50e81a98296cddbc44d955 100644 (file)
@@ -477,7 +477,7 @@ static void ks7010_rw_function(struct work_struct *work)
                                                    struct ks_wlan_private,
                                                    rw_dwork.work);
        struct sdio_func *func = ks7010_to_func(priv);
-       unsigned char byte;
+       u8 byte;
        int ret;
 
        /* wait after DOZE */