diff options
author | Serge Semin <Sergey.Semin@baikalelectronics.ru> | 2020-09-20 13:28:52 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-09-29 18:22:25 +0200 |
commit | 675e7c9d71cedee3988b554c47971be77e72d2db (patch) | |
tree | 8762df087a48ae1ed7a1de1920ae8c64d51d8cb4 /drivers/spi/spi-dw.h | |
parent | spi: dw: Use relaxed IO-methods to access FIFOs (diff) | |
download | linux-675e7c9d71cedee3988b554c47971be77e72d2db.tar.xz linux-675e7c9d71cedee3988b554c47971be77e72d2db.zip |
spi: dw: Discard DW SSI chip type storages
Keeping SPI peripheral devices type is pointless since first it hasn't
been functionally utilized by any of the client drivers/code and second it
won't work for Microwire type at the very least. Moreover there is no
point in setting up the type by means of the chip-data in the modern
kernel. The peripheral devices with specific interface type need to be
detected in order to activate the corresponding frame format. It most
likely will require some peripheral device specific DT property or
whatever to find out the interface protocol. So let's remove the serial
interface type fields from the DW APB SSI controller and the SPI
peripheral device private data.
Note we'll preserve the explicit SSI_MOTO_SPI interface type setting up to
signify the only currently supported interface protocol.
Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Link: https://lore.kernel.org/r/20200920112914.26501-9-Sergey.Semin@baikalelectronics.ru
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-dw.h')
-rw-r--r-- | drivers/spi/spi-dw.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-dw.h b/drivers/spi/spi-dw.h index 40b2c8c0c2a2..66ef35dd8b6e 100644 --- a/drivers/spi/spi-dw.h +++ b/drivers/spi/spi-dw.h @@ -111,7 +111,6 @@ struct dw_spi_dma_ops { struct dw_spi { struct spi_controller *master; - enum dw_ssi_type type; void __iomem *regs; unsigned long paddr; |