mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
spi/topcliff-pch: Remove unneeded semicolon
Fixes coccicheck warning: drivers/spi/spi-topcliff-pch.c:866:47-48: Unneeded semicolon drivers/spi/spi-topcliff-pch.c:881:53-54: Unneeded semicolon Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: zhengbin <zhengbin13@huawei.com> Link: https://lore.kernel.org/r/1574909512-24260-1-git-send-email-zhengbin13@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
e42617b825
commit
10e413faa7
@ -863,7 +863,7 @@ static void pch_spi_request_dma(struct pch_spi_data *data, int bpw)
|
||||
/* Set Tx DMA */
|
||||
param = &dma->param_tx;
|
||||
param->dma_dev = &dma_dev->dev;
|
||||
param->chan_id = data->ch * 2; /* Tx = 0, 2 */;
|
||||
param->chan_id = data->ch * 2; /* Tx = 0, 2 */
|
||||
param->tx_reg = data->io_base_addr + PCH_SPDWR;
|
||||
param->width = width;
|
||||
chan = dma_request_channel(mask, pch_spi_filter, param);
|
||||
@ -878,7 +878,7 @@ static void pch_spi_request_dma(struct pch_spi_data *data, int bpw)
|
||||
/* Set Rx DMA */
|
||||
param = &dma->param_rx;
|
||||
param->dma_dev = &dma_dev->dev;
|
||||
param->chan_id = data->ch * 2 + 1; /* Rx = Tx + 1 */;
|
||||
param->chan_id = data->ch * 2 + 1; /* Rx = Tx + 1 */
|
||||
param->rx_reg = data->io_base_addr + PCH_SPDRR;
|
||||
param->width = width;
|
||||
chan = dma_request_channel(mask, pch_spi_filter, param);
|
||||
|
Loading…
Reference in New Issue
Block a user