Message ID | 20210218132840.131898-1-tudor.ambarus@microchip.com |
---|---|
State | Accepted |
Commit | 120a9e8155cbc0f50315f79a18cb03a1ee6f3211 |
Headers | show |
Series | spi: atmel: Drop unused variable | expand |
On Thu, 18 Feb 2021 15:28:40 +0200, Tudor Ambarus wrote: > The DMA cap mask is no longer used since: > commit 7758e390699f ("spi: atmel: remove compat for non DT board when requesting dma chan") > Drop it now. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: atmel: Drop unused variable commit: c5f754fd0a31d2c6f2f8d11f3db1427b5566f1e7 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c index 0e5e64a80848..19d6f228efa0 100644 --- a/drivers/spi/spi-atmel.c +++ b/drivers/spi/spi-atmel.c @@ -506,10 +506,6 @@ static int atmel_spi_configure_dma(struct spi_master *master, struct device *dev = &as->pdev->dev; int err; - dma_cap_mask_t mask; - dma_cap_zero(mask); - dma_cap_set(DMA_SLAVE, mask); - master->dma_tx = dma_request_chan(dev, "tx"); if (IS_ERR(master->dma_tx)) { err = dev_err_probe(dev, PTR_ERR(master->dma_tx),
The DMA cap mask is no longer used since: commit 7758e390699f ("spi: atmel: remove compat for non DT board when requesting dma chan") Drop it now. Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com> --- drivers/spi/spi-atmel.c | 4 ---- 1 file changed, 4 deletions(-)