wifi: iwlwifi: fw: fix argument to efi.get_variable
authorAlon Giladi <alon.giladi@intel.com>
Tue, 18 Apr 2023 09:28:07 +0000 (12:28 +0300)
committerJohannes Berg <johannes.berg@intel.com>
Thu, 20 Apr 2023 09:45:54 +0000 (11:45 +0200)
We should pass the newly allocated data to fill.

Signed-off-by: Alon Giladi <alon.giladi@intel.com>
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230418122405.aaa6d8874442.I734841c71aad9564cb22c50f2737aaff489fadaf@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/fw/uefi.c

index 0b6f694..01afea3 100644 (file)
@@ -222,7 +222,7 @@ void *iwl_uefi_get_reduced_power(struct iwl_trans *trans, size_t *len)
                return ERR_PTR(-ENOMEM);
 
        status = efi.get_variable(IWL_UEFI_REDUCED_POWER_NAME, &IWL_EFI_VAR_GUID,
-                                 NULL, &package_size, data);
+                                 NULL, &package_size, package);
        if (status != EFI_SUCCESS) {
                IWL_DEBUG_FW(trans,
                             "Reduced Power UEFI variable not found 0x%lx (len %lu)\n",