diff mbox series

memory: tegra: remove redundant variable initialization

Message ID 20230319171303.120777-1-diogo.ivo@tecnico.ulisboa.pt
State Handled Elsewhere
Headers show
Series memory: tegra: remove redundant variable initialization | expand

Commit Message

Diogo Ivo March 19, 2023, 5:13 p.m. UTC
tegra210_emc_table_device_init() sets count = 0 twice, so
remove the second instance.

Signed-off-by: Diogo Ivo <diogo.ivo@tecnico.ulisboa.pt>
---
 drivers/memory/tegra/tegra210-emc-table.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Krzysztof Kozlowski March 22, 2023, 5:49 p.m. UTC | #1
On Sun, 19 Mar 2023 17:13:03 +0000, Diogo Ivo wrote:
> tegra210_emc_table_device_init() sets count = 0 twice, so
> remove the second instance.
> 
> 

Applied, thanks!

[1/1] memory: tegra: remove redundant variable initialization
      https://git.kernel.org/krzk/linux-mem-ctrl/c/2ae66ecc0825b0b4707384772b848c79b0986ef5

Best regards,
diff mbox series

Patch

diff --git a/drivers/memory/tegra/tegra210-emc-table.c b/drivers/memory/tegra/tegra210-emc-table.c
index 3e0598363b87..34a8785d2861 100644
--- a/drivers/memory/tegra/tegra210-emc-table.c
+++ b/drivers/memory/tegra/tegra210-emc-table.c
@@ -22,8 +22,6 @@  static int tegra210_emc_table_device_init(struct reserved_mem *rmem,
 		return -ENOMEM;
 	}
 
-	count = 0;
-
 	for (i = 0; i < TEGRA_EMC_MAX_FREQS; i++) {
 		if (timings[i].revision == 0)
 			break;