mirror of https://github.com/thesofproject/sof.git
spi: remove the unused irq field
The SPI driver only supports the DMA mode, its IRQ line isn't used and the IRQ number in Sue Creek data is wrong. Remove the field completely. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
This commit is contained in:
parent
fe5886808b
commit
1712beab30
|
@ -27,7 +27,6 @@ struct spi_plat_fifo_data {
|
|||
|
||||
struct spi_platform_data {
|
||||
uint32_t base;
|
||||
uint32_t irq;
|
||||
struct spi_plat_fifo_data fifo[2];
|
||||
enum spi_type type;
|
||||
};
|
||||
|
|
|
@ -292,7 +292,6 @@ struct timer *platform_timer =
|
|||
|
||||
static struct spi_platform_data spi = {
|
||||
.base = DW_SPI_SLAVE_BASE,
|
||||
.irq = IRQ_EXT_LP_GPDMA0_LVL5(0, 0),
|
||||
.type = SOF_SPI_INTEL_SLAVE,
|
||||
.fifo[SPI_DIR_RX] = {
|
||||
.handshake = DMA_HANDSHAKE_SSI_RX,
|
||||
|
|
Loading…
Reference in New Issue