From a7360b184b47077ff60293d6b211c637e016ff75 Mon Sep 17 00:00:00 2001 From: Sergio Paracuellos Date: Mon, 23 Apr 2018 15:44:46 +0200 Subject: [PATCH] staging: ks7010: use u8 instead of unsigned char for firmware buffers This commit replaces type unsigned char which is the one which is being used for firmware buffers with u8 type which is preferred. Signed-off-by: Sergio Paracuellos Signed-off-by: Greg Kroah-Hartman --- drivers/staging/ks7010/ks7010_sdio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/ks7010/ks7010_sdio.c b/drivers/staging/ks7010/ks7010_sdio.c index 5293b48..130e0be 100644 --- a/drivers/staging/ks7010/ks7010_sdio.c +++ b/drivers/staging/ks7010/ks7010_sdio.c @@ -689,10 +689,10 @@ err_free_data_buf: #define ROM_BUFF_SIZE (64 * 1024) static int ks7010_sdio_data_compare(struct ks_wlan_private *priv, u32 address, - unsigned char *data, unsigned int size) + u8 *data, unsigned int size) { int ret; - unsigned char *read_buf; + u8 *read_buf; read_buf = kmalloc(ROM_BUFF_SIZE, GFP_KERNEL); if (!read_buf) @@ -723,7 +723,7 @@ static int ks7010_copy_firmware(struct ks_wlan_private *priv, unsigned int size; unsigned int offset; unsigned int n = 0; - unsigned char *rom_buf; + u8 *rom_buf; int ret; rom_buf = kmalloc(ROM_BUFF_SIZE, GFP_KERNEL); -- 2.7.4