diff options
author | Joe Perches <joe@perches.com> | 2009-06-28 12:26:21 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-07-23 00:29:16 -0400 |
commit | c019894efc9c9ba5939948caa78c133b1ec8ae63 (patch) | |
tree | 4ecec80e15bd9f50598aca7020b630e12a4a149d /drivers/dma/mv_xor.c | |
parent | e3d433040ee6077e33d4ad22e2f60a38b085786d (diff) |
drivers/dma: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/mv_xor.c')
-rw-r--r-- | drivers/dma/mv_xor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c index ddab94f51224..3f23eabe09f2 100644 --- a/drivers/dma/mv_xor.c +++ b/drivers/dma/mv_xor.c | |||
@@ -1176,7 +1176,7 @@ static int __devinit mv_xor_probe(struct platform_device *pdev) | |||
1176 | if (dma_has_cap(DMA_MEMSET, dma_dev->cap_mask)) | 1176 | if (dma_has_cap(DMA_MEMSET, dma_dev->cap_mask)) |
1177 | dma_dev->device_prep_dma_memset = mv_xor_prep_dma_memset; | 1177 | dma_dev->device_prep_dma_memset = mv_xor_prep_dma_memset; |
1178 | if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) { | 1178 | if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) { |
1179 | dma_dev->max_xor = 8; ; | 1179 | dma_dev->max_xor = 8; |
1180 | dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor; | 1180 | dma_dev->device_prep_dma_xor = mv_xor_prep_dma_xor; |
1181 | } | 1181 | } |
1182 | 1182 | ||