[PATCH] spi: dw: Remove shadowed dws in dw_spi_setup()

From: Liang Hao

Date: Fri Aug 14 2026 - 07:42:54 EST


The controller private data is already fetched at the start of
dw_spi_setup(). Drop the redundant inner declaration that shadows it.

Signed-off-by: Liang Hao <haohlliang@xxxxxxxxx>
---
drivers/spi/spi-dw-core.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/spi/spi-dw-core.c b/drivers/spi/spi-dw-core.c
index dfce2fa20adf..206d3f9dd83d 100644
--- a/drivers/spi/spi-dw-core.c
+++ b/drivers/spi/spi-dw-core.c
@@ -1098,7 +1098,6 @@ static int dw_spi_setup(struct spi_device *spi)
/* Only alloc on first setup */
chip = spi_get_ctldata(spi);
if (!chip) {
- struct dw_spi *dws = spi_controller_get_devdata(spi->controller);
u32 rx_sample_dly_ns;

chip = kzalloc_obj(*chip);
--
2.50.1 (Apple Git-155)