From: Michael Straube Date: Tue, 12 Apr 2022 18:57:53 +0000 (+0200) Subject: staging: r8188eu: remove unneeded initializations X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=067b22afad2f26a80b66dd21b72bc6978fe61a9b;p=linux.git staging: r8188eu: remove unneeded initializations The variables i and offset in block_write() are set in the code before they are used. Remove the unneeded initializations. Signed-off-by: Michael Straube Link: https://lore.kernel.org/r/20220412185754.8695-6-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/r8188eu/core/rtw_fw.c b/drivers/staging/r8188eu/core/rtw_fw.c index b4ab050a6f235..1e930799a0b3f 100644 --- a/drivers/staging/r8188eu/core/rtw_fw.c +++ b/drivers/staging/r8188eu/core/rtw_fw.c @@ -75,7 +75,7 @@ static int block_write(struct adapter *padapter, u8 *buffer, u32 size) { int ret = _SUCCESS; u32 blocks, block_size, remain; - u32 i = 0, offset = 0; + u32 i, offset; block_size = MAX_REG_BLOCK_SIZE;