staging: ks7010: change some local variables type in ks_sdio_interrupt

Local variables 'status', 'rsize' and 'byte' are declared as
unsigned char and can be declared as u8 which is preferred.
They are being used in ks7010_sdio_readb calls which is already
expected an u8.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sergio Paracuellos 2018-05-04 06:16:13 +02:00 committed by Greg Kroah-Hartman
parent a51333d175
commit 29699193df

View file

@ -542,7 +542,7 @@ static void ks_sdio_interrupt(struct sdio_func *func)
int ret; int ret;
struct ks_sdio_card *card; struct ks_sdio_card *card;
struct ks_wlan_private *priv; struct ks_wlan_private *priv;
unsigned char status, rsize, byte; u8 status, rsize, byte;
card = sdio_get_drvdata(func); card = sdio_get_drvdata(func);
priv = card->priv; priv = card->priv;