diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-07-22 18:06:08 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2020-07-27 15:22:58 +0200 |
commit | eb27e5a314d1e2c303ac0df3384552743c3dfcda (patch) | |
tree | 7e7c556e71a84e9e7ebb003592f87ba29e90465d /drivers/acpi/apei | |
parent | 92ed301919932f777713b9172e525674157e983d (diff) | |
download | linux-eb27e5a314d1e2c303ac0df3384552743c3dfcda.tar.bz2 |
ACPI: APEI: remove redundant assignment to variable rc
The variable rc is being initialized with a value that is
never read and it is being updated later with a new value. The
initialization is redundant and can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/apei')
-rw-r--r-- | drivers/acpi/apei/hest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/apei/hest.c b/drivers/acpi/apei/hest.c index 953a2fae8b15..6e980fe16772 100644 --- a/drivers/acpi/apei/hest.c +++ b/drivers/acpi/apei/hest.c @@ -227,7 +227,7 @@ __setup("hest_disable", setup_hest_disable); void __init acpi_hest_init(void) { acpi_status status; - int rc = -ENODEV; + int rc; unsigned int ghes_count = 0; if (hest_disable) { |