[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20220704191147.594032-1-colin.i.king@gmail.com>
Date: Mon, 4 Jul 2022 20:11:47 +0100
From: Colin Ian King <colin.i.king@...il.com>
To: David Airlie <airlied@...ux.ie>
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] x86/amd_nb: remove redundant initialization of variable i
Variable i is initialized with a value and then re-assigned with
the same value in the following for-loop. The first initialization
is redundant and can be removed.
Signed-off-by: Colin Ian King <colin.i.king@...il.com>
---
drivers/char/agp/amd64-agp.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c
index 84a4aa9312cf..c7bf2c4bc0b0 100644
--- a/drivers/char/agp/amd64-agp.c
+++ b/drivers/char/agp/amd64-agp.c
@@ -333,7 +333,6 @@ static int cache_nbs(struct pci_dev *pdev, u32 cap_ptr)
if (!amd_nb_has_feature(AMD_NB_GART))
return -ENODEV;
- i = 0;
for (i = 0; i < amd_nb_num(); i++) {
struct pci_dev *dev = node_to_amd_nb(i)->misc;
if (fix_northbridge(dev, pdev, cap_ptr) < 0) {
--
2.35.3
Powered by blists - more mailing lists