platform/x86/intel/ifs: Remove unnecessary initialization of 'ret'
authorIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Thu, 25 Jan 2024 13:03:28 +0000 (15:03 +0200)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Wed, 31 Jan 2024 10:04:31 +0000 (12:04 +0200)
The ret variable is unconditionally assigned in ifs_load_firmware().
Therefore, remove its unnecessary initialization.

Reviewed-by: Ashok Raj <ashok.raj@intel.com>
Link: https://lore.kernel.org/r/20240125130328.11253-1-ilpo.jarvinen@linux.intel.com
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/intel/ifs/load.c

index a1ee1a74fc3c4cb7e7bc62cda0297acdbe942d54..03e49b836a6b97f844b9c78fb6213373897d78b7 100644 (file)
@@ -383,7 +383,7 @@ int ifs_load_firmware(struct device *dev)
        unsigned int expected_size;
        const struct firmware *fw;
        char scan_path[64];
-       int ret = -EINVAL;
+       int ret;
 
        snprintf(scan_path, sizeof(scan_path), "intel/ifs_%d/%02x-%02x-%02x-%02x.scan",
                 test->test_num, boot_cpu_data.x86, boot_cpu_data.x86_model,