staging: ks7010: change local variable type in ks_wlan_hw_rx
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Fri, 4 May 2018 04:16:17 +0000 (06:16 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 May 2018 01:58:37 +0000 (18:58 -0700)
Local variable event in ks_wlan_hw_rx function is declared
as unsigned short and can be declared as u16 which is preferred
style.

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 0c487ed..0b1e352 100644 (file)
@@ -425,7 +425,7 @@ static void ks_wlan_hw_rx(struct ks_wlan_private *priv, uint16_t size)
        int ret;
        struct rx_device_buffer *rx_buffer;
        struct hostif_hdr *hdr;
-       unsigned short event = 0;
+       u16 event = 0;
 
        /* receive data */
        if (rxq_count(priv) >= (RX_DEVICE_BUFF_SIZE - 1)) {