mirror of
https://github.com/torvalds/linux.git
synced 2025-11-06 11:39:24 +02:00
The kernel test robot reports printk format warnings in uefi.c, so
correct them.
../drivers/net/wireless/intel/iwlwifi/fw/uefi.c: In function 'iwl_uefi_get_pnvm':
../drivers/net/wireless/intel/iwlwifi/fw/uefi.c:52:30: warning: format '%zd' expects argument of type 'signed size_t', but argument 7 has type 'long unsigned int' [-Wformat=]
52 | "PNVM UEFI variable not found %d (len %zd)\n",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
53 | err, package_size);
| ~~~~~~~~~~~~
| |
| long unsigned int
../drivers/net/wireless/intel/iwlwifi/fw/uefi.c:59:29: warning: format '%zd' expects argument of type 'signed size_t', but argument 6 has type 'long unsigned int' [-Wformat=]
59 | IWL_DEBUG_FW(trans, "Read PNVM from UEFI with size %zd\n", package_size);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~
| |
| long unsigned int
Fixes:
|
||
|---|---|---|
| .. | ||
| api | ||
| acpi.c | ||
| acpi.h | ||
| dbg.c | ||
| dbg.h | ||
| debugfs.c | ||
| debugfs.h | ||
| dump.c | ||
| error-dump.h | ||
| file.h | ||
| img.c | ||
| img.h | ||
| init.c | ||
| notif-wait.c | ||
| notif-wait.h | ||
| paging.c | ||
| pnvm.c | ||
| pnvm.h | ||
| runtime.h | ||
| smem.c | ||
| uefi.c | ||
| uefi.h | ||