aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/edac/amd64_edac.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-04-29 16:48:47 +0100
committerBorislav Petkov <bp@suse.de>2020-05-29 15:15:02 +0200
commitf00eb5ff2f6ffc4a2f0fc0e829410082bff0f78e (patch)
treec8e0e6e705d08b0bfc219bd5822c122ce8f83126 /drivers/edac/amd64_edac.c
parentEDAC/skx: Use the mcmtr register to retrieve close_pg/bank_xor_enable (diff)
downloadlinux-dev-f00eb5ff2f6ffc4a2f0fc0e829410082bff0f78e.tar.xz
linux-dev-f00eb5ff2f6ffc4a2f0fc0e829410082bff0f78e.zip
EDAC/amd64: Remove redundant assignment to variable ret in hw_info_get()
The variable ret is being assigned with a value that is never read and it is being updated later with a new value. The initialization is redundant so remove it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Borislav Petkov <bp@suse.de> Link: https://lkml.kernel.org/r/20200429154847.287001-1-colin.king@canonical.com
Diffstat (limited to 'drivers/edac/amd64_edac.c')
-rw-r--r--drivers/edac/amd64_edac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c
index f91f3bc1e0b2..9cf7cc1f3f72 100644
--- a/drivers/edac/amd64_edac.c
+++ b/drivers/edac/amd64_edac.c
@@ -3403,7 +3403,7 @@ static const struct attribute_group *amd64_edac_attr_groups[] = {
static int hw_info_get(struct amd64_pvt *pvt)
{
u16 pci_id1, pci_id2;
- int ret = -EINVAL;
+ int ret;
if (pvt->fam >= 0x17) {
pvt->umc = kcalloc(fam_type->max_mcs, sizeof(struct amd64_umc), GFP_KERNEL);