scsi: BusLogic: Use %X for u32 sized integer rather than %lX
authorColin Ian King <colin.king@canonical.com>
Fri, 30 Jul 2021 09:50:31 +0000 (10:50 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 18 Sep 2021 11:40:12 +0000 (13:40 +0200)
commit59137b7dfff1ac1fe84537d5dbe18a4e72b41917
tree1c636bf3a437f68e67d3a2bfabf4dc485b6ffb2c
parent8ea3e622af56b6f5aa92e78d2b3d31603c6b5c6f
scsi: BusLogic: Use %X for u32 sized integer rather than %lX

[ Upstream commit 2127cd21fb78c6e22d92944253afd967b0ff774d ]

An earlier fix changed the print format specifier for adapter->bios_addr to
use %lX. However, the integer is a u32 so the fix was wrong. Fix this by
using the correct %X format specifier.

Link: https://lore.kernel.org/r/20210730095031.26981-1-colin.king@canonical.com
Fixes: 43622697117c ("scsi: BusLogic: use %lX for unsigned long rather than %X")
Acked-by: Khalid Aziz <khalid@gonehiking.org>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Addresses-Coverity: ("Invalid type in argument")
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/scsi/BusLogic.c