Commit f47da240 authored by Jarkko Nikula's avatar Jarkko Nikula Committed by Mark Brown

spi: spi-pxa2xx: Remove unused legacy PXA DMA API channel numbers

These became unused by the commit 6356437e
("spi: spi-pxa2xx: remove legacy PXA DMA bits").
Signed-off-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 34cadd9c
...@@ -1475,8 +1475,6 @@ static int pxa2xx_spi_probe(struct platform_device *pdev) ...@@ -1475,8 +1475,6 @@ static int pxa2xx_spi_probe(struct platform_device *pdev)
} }
/* Setup DMA if requested */ /* Setup DMA if requested */
drv_data->tx_channel = -1;
drv_data->rx_channel = -1;
if (platform_info->enable_dma) { if (platform_info->enable_dma) {
status = pxa2xx_spi_dma_setup(drv_data); status = pxa2xx_spi_dma_setup(drv_data);
if (status) { if (status) {
......
...@@ -37,8 +37,6 @@ struct driver_data { ...@@ -37,8 +37,6 @@ struct driver_data {
struct pxa2xx_spi_master *master_info; struct pxa2xx_spi_master *master_info;
/* PXA private DMA setup stuff */ /* PXA private DMA setup stuff */
int rx_channel;
int tx_channel;
u32 *null_dma_buf; u32 *null_dma_buf;
/* SSP register addresses */ /* SSP register addresses */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment