projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d9a276
)
BUG_ON conversion for drivers/mmc/omap.c
author
Eric Sesterhenn
<snakebyte@gmx.de>
Thu, 30 Nov 2006 04:27:38 +0000
(
05:27
+0100)
committer
Adrian Bunk
<bunk@stusta.de>
Thu, 30 Nov 2006 04:27:38 +0000
(
05:27
+0100)
This patch converts a if () BUG(); construct to BUG_ON();
which occupies less space, uses unlikely and is safer when
BUG() is disabled.
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
drivers/mmc/omap.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mmc/omap.c
b/drivers/mmc/omap.c
index 762fa28958918fbd21770a574f035a725bb14bd5..d593ef342e759f1a551e8303d250f981fd5f4fd6 100644
(file)
--- a/
drivers/mmc/omap.c
+++ b/
drivers/mmc/omap.c
@@
-640,8
+640,7
@@
mmc_omap_prepare_dma(struct mmc_omap_host *host, struct mmc_data *data)
}
/* Max limit for DMA frame count is 0xffff */
- if (unlikely(count > 0xffff))
- BUG();
+ BUG_ON(count > 0xffff);
OMAP_MMC_WRITE(host->base, BUF, buf);
omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S16,