aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-07-22 18:06:08 +0100
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2020-07-27 15:22:58 +0200
commiteb27e5a314d1e2c303ac0df3384552743c3dfcda (patch)
tree7e7c556e71a84e9e7ebb003592f87ba29e90465d
parentLinux 5.8-rc7 (diff)
downloadlinux-dev-eb27e5a314d1e2c303ac0df3384552743c3dfcda.tar.xz
linux-dev-eb27e5a314d1e2c303ac0df3384552743c3dfcda.zip
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>
-rw-r--r--drivers/acpi/apei/hest.c2
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) {