We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a22549f commit 436b265Copy full SHA for 436b265
drivers/net/wireless/intel/iwlwifi/fw/pnvm.c
@@ -271,12 +271,12 @@ static int iwl_pnvm_get_from_efi(struct iwl_trans *trans,
271
err = efivar_entry_get(pnvm_efivar, NULL, &package_size, package);
272
if (err) {
273
IWL_DEBUG_FW(trans,
274
- "PNVM UEFI variable not found %d (len %zd)\n",
+ "PNVM UEFI variable not found %d (len %lu)\n",
275
err, package_size);
276
goto out;
277
}
278
279
- IWL_DEBUG_FW(trans, "Read PNVM fro UEFI with size %zd\n", package_size);
+ IWL_DEBUG_FW(trans, "Read PNVM fro UEFI with size %lu\n", package_size);
280
281
*data = kmemdup(package->data, *len, GFP_KERNEL);
282
if (!*data)
0 commit comments