spi: dw: Avoid useless assignments in generic DMA setup

Generic DMA setup doesn't rely on certain type of DMA controller and thus
shouldn't use Intel Medfield settings, although it's harmless in this case.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200507115449.8093-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Andy Shevchenko 2020-05-07 14:54:48 +03:00 committed by Mark Brown
parent 22d48ad7bf
commit 140e45e1e6
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -321,8 +321,6 @@ static const struct dw_spi_dma_ops generic_dma_ops = {
static void dw_spi_mid_setup_dma_generic(struct dw_spi *dws)
{
dws->dma_tx = &mid_dma_tx;
dws->dma_rx = &mid_dma_rx;
dws->dma_ops = &generic_dma_ops;
}
#else /* CONFIG_SPI_DW_MID_DMA */