Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d99c5909 authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Adrian Bunk
Browse files

BUG_ON conversion for drivers/mmc/omap.c



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: default avatarEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent 5d9a276a
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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,