spi: dw: Remove shadowed dws in dw_spi_setup()

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@gmail.com>
Link: https://patch.msgid.link/20260814114235.31281-1-haohlliang@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Liang Hao 2026-08-14 19:42:35 +08:00 committed by Mark Brown
parent 923e41ed59
commit 11dfeb73d1
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -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);