mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 03:06:50 -04:00
staging: rtl8188eu: types of local variables conformed with types of function arguments
The array should not change in any case. Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1e7e93ee6d
commit
645d2a8f46
@@ -58,8 +58,8 @@ static void _rtl88e_fw_block_write(struct adapter *adapt,
|
||||
const u8 *buffer, u32 size)
|
||||
{
|
||||
u32 blk_sz = sizeof(u32);
|
||||
u8 *buf_ptr = (u8 *)buffer;
|
||||
u32 *pu4BytePtr = (u32 *)buffer;
|
||||
const u8 *buf_ptr = (u8 *)buffer;
|
||||
const u32 *pu4BytePtr = (u32 *)buffer;
|
||||
u32 i, offset, blk_cnt, remain;
|
||||
|
||||
blk_cnt = size / blk_sz;
|
||||
|
||||
Reference in New Issue
Block a user