diff options
author | Jarkko Nikula <jarkko.nikula@linux.intel.com> | 2015-08-03 06:41:11 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-08-03 12:13:51 -0400 |
commit | f47da2400e8828eda2ed4208fb312031f8b7d2ae (patch) | |
tree | 773b5bb3c2e3eb200ec392af4876fbae41f81312 | |
parent | 34cadd9c1bcbd5ad5a1f379b013526a8046d4aed (diff) |
spi: spi-pxa2xx: Remove unused legacy PXA DMA API channel numbers
These became unused by the commit 6356437e65c2
("spi: spi-pxa2xx: remove legacy PXA DMA bits").
Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-pxa2xx.c | 2 | ||||
-rw-r--r-- | drivers/spi/spi-pxa2xx.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c index 2c9fa409d2bf..e924710e126c 100644 --- a/drivers/spi/spi-pxa2xx.c +++ b/drivers/spi/spi-pxa2xx.c | |||
@@ -1475,8 +1475,6 @@ static int pxa2xx_spi_probe(struct platform_device *pdev) | |||
1475 | } | 1475 | } |
1476 | 1476 | ||
1477 | /* Setup DMA if requested */ | 1477 | /* Setup DMA if requested */ |
1478 | drv_data->tx_channel = -1; | ||
1479 | drv_data->rx_channel = -1; | ||
1480 | if (platform_info->enable_dma) { | 1478 | if (platform_info->enable_dma) { |
1481 | status = pxa2xx_spi_dma_setup(drv_data); | 1479 | status = pxa2xx_spi_dma_setup(drv_data); |
1482 | if (status) { | 1480 | if (status) { |
diff --git a/drivers/spi/spi-pxa2xx.h b/drivers/spi/spi-pxa2xx.h index 9f01e9c9aa75..3b69c46bfbc9 100644 --- a/drivers/spi/spi-pxa2xx.h +++ b/drivers/spi/spi-pxa2xx.h | |||
@@ -37,8 +37,6 @@ struct driver_data { | |||
37 | struct pxa2xx_spi_master *master_info; | 37 | struct pxa2xx_spi_master *master_info; |
38 | 38 | ||
39 | /* PXA private DMA setup stuff */ | 39 | /* PXA private DMA setup stuff */ |
40 | int rx_channel; | ||
41 | int tx_channel; | ||
42 | u32 *null_dma_buf; | 40 | u32 *null_dma_buf; |
43 | 41 | ||
44 | /* SSP register addresses */ | 42 | /* SSP register addresses */ |