Message ID | 20220706100626.1234731-5-cristian.ciocaltea@collabora.com |
---|---|
State | Accepted |
Commit | 1e71ffee97ac02b83b6ff75b52fa7b21b9149f7d |
Headers | show |
Series | AMD SPI controller driver bug fix and cleanups | expand |
diff --git a/drivers/spi/spi-amd.c b/drivers/spi/spi-amd.c index 1aa19a02a7b6..6eddb950e1ad 100644 --- a/drivers/spi/spi-amd.c +++ b/drivers/spi/spi-amd.c @@ -47,7 +47,6 @@ enum amd_spi_versions { struct amd_spi { void __iomem *io_remap_addr; - unsigned long io_base_addr; enum amd_spi_versions version; };
The io_base_addr member of struct amd_spi is not referenced anywhere in the driver implementation and there is no indication that it could be used in the future, hence drop it. Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com> --- drivers/spi/spi-amd.c | 1 - 1 file changed, 1 deletion(-)