From: Mauro Dreissig Date: Sun, 5 Jul 2020 14:35:52 +0000 (-0300) Subject: staging: rtl8712: Use proper format in call to dev_err() X-Git-Tag: v5.9-rc1~119^2~108 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a3232e64b4be06460d02ded09c5bd347b0a3a2b8;p=thirdparty%2Fkernel%2Flinux.git staging: rtl8712: Use proper format in call to dev_err() In the call to dev_err(), remove the cast of size_t to int and change the format string accordingly. As reported by the kernel test robot, the correct format string for a size_t argument should be %zu. Reported-by: kernel test robot Signed-off-by: Mauro Dreissig Link: https://lore.kernel.org/r/20200705143552.9368-6-mukadr@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8712/hal_init.c b/drivers/staging/rtl8712/hal_init.c index d7b30152d4093..ed51023b85a0d 100644 --- a/drivers/staging/rtl8712/hal_init.c +++ b/drivers/staging/rtl8712/hal_init.c @@ -68,8 +68,8 @@ MODULE_FIRMWARE("rtlwifi/rtl8712u.bin"); static u32 rtl871x_open_fw(struct _adapter *adapter, const u8 **mappedfw) { if (adapter->fw->size > 200000) { - dev_err(&adapter->pnetdev->dev, "r8172u: Badfw->size of %d\n", - (int)adapter->fw->size); + dev_err(&adapter->pnetdev->dev, "r8712u: Bad fw->size of %zu\n", + adapter->fw->size); return 0; } *mappedfw = adapter->fw->data;