|
@@ -316,8 +316,7 @@ static void sdhci_read_block_pio(struct sdhci_host *host)
|
|
|
local_irq_save(flags);
|
|
|
|
|
|
while (blksize) {
|
|
|
- if (!sg_miter_next(&host->sg_miter))
|
|
|
- BUG();
|
|
|
+ BUG_ON(!sg_miter_next(&host->sg_miter));
|
|
|
|
|
|
len = min(host->sg_miter.length, blksize);
|
|
|
|
|
@@ -362,8 +361,7 @@ static void sdhci_write_block_pio(struct sdhci_host *host)
|
|
|
local_irq_save(flags);
|
|
|
|
|
|
while (blksize) {
|
|
|
- if (!sg_miter_next(&host->sg_miter))
|
|
|
- BUG();
|
|
|
+ BUG_ON(!sg_miter_next(&host->sg_miter));
|
|
|
|
|
|
len = min(host->sg_miter.length, blksize);
|
|
|
|