Skip to content

Commit

Permalink
drivers/spi: Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
  • Loading branch information
Joe Perches authored and Grant Likely committed Nov 15, 2010
1 parent eae6cb3 commit bc3f67a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/spi/amba-pl022.c
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ static int configure_dma(struct pl022 *pl022)
tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
break;
case WRITING_U32:
tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;;
tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
break;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/spi/spi_nuc900.c
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ static int __devinit nuc900_spi_probe(struct platform_device *pdev)
release_mem_region(hw->res->start, resource_size(hw->res));
kfree(hw->ioarea);
err_pdata:
spi_master_put(hw->master);;
spi_master_put(hw->master);

err_nomem:
return err;
Expand Down

0 comments on commit bc3f67a

Please sign in to comment.