diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2018-08-29 17:04:26 -0400 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2018-09-11 02:10:35 -0400 |
commit | a436ff1e96b9e1f34952915fe143a75a4ad8b561 (patch) | |
tree | 40ed7b6882d7f5f72a0869820a5390d062c55610 | |
parent | 90d23222cf5158d6cc724347e8940b4a87779e30 (diff) |
dmaengine: pxa: fix semicolon.cocci warnings
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Signed-off-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
-rw-r--r-- | drivers/dma/pxa_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/pxa_dma.c b/drivers/dma/pxa_dma.c index 21001ea078fb..825725057e00 100644 --- a/drivers/dma/pxa_dma.c +++ b/drivers/dma/pxa_dma.c | |||
@@ -1432,7 +1432,7 @@ static int pxad_probe(struct platform_device *op) | |||
1432 | "#dma-requests set to default 32 as missing in OF: %d", | 1432 | "#dma-requests set to default 32 as missing in OF: %d", |
1433 | ret); | 1433 | ret); |
1434 | nb_requestors = 32; | 1434 | nb_requestors = 32; |
1435 | }; | 1435 | } |
1436 | } else if (pdata && pdata->dma_channels) { | 1436 | } else if (pdata && pdata->dma_channels) { |
1437 | dma_channels = pdata->dma_channels; | 1437 | dma_channels = pdata->dma_channels; |
1438 | nb_requestors = pdata->nb_requestors; | 1438 | nb_requestors = pdata->nb_requestors; |