diff options
author | Joe Perches <joe@perches.com> | 2010-11-15 04:04:30 +0100 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-01-09 04:48:04 +0100 |
commit | 150ee73d1b35936aafc5fd3b39a7291b1f66de07 (patch) | |
tree | d427ed9ac5fdd652e46ed38d9f1a758d088f68e4 /drivers/mmc | |
parent | mmc: sdhci: print SD Command and CAPABILITY_1 when dumping registers (diff) | |
download | linux-150ee73d1b35936aafc5fd3b39a7291b1f66de07.tar.xz linux-150ee73d1b35936aafc5fd3b39a7291b1f66de07.zip |
mmc: davinci_mmc: Remove unnecessary semicolon
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/davinci_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c index e15547cf701f..b643ddef4f70 100644 --- a/drivers/mmc/host/davinci_mmc.c +++ b/drivers/mmc/host/davinci_mmc.c @@ -480,7 +480,7 @@ static void mmc_davinci_send_dma_request(struct mmc_davinci_host *host, struct scatterlist *sg; unsigned sg_len; unsigned bytes_left = host->bytes_left; - const unsigned shift = ffs(rw_threshold) - 1;; + const unsigned shift = ffs(rw_threshold) - 1; if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) { template = &host->tx_template; |