mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
mmc: davinci: Fix -Wpointer-to-int-cast on compile test
Store in interrupt service routine always '1' in end_command, not the
value of host->cmd to fix compile test warnings on RISC-V:
drivers/mmc/host/davinci_mmc.c:999:17: warning:
cast from pointer to integer of different size [-Wpointer-to-int-cast]
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20200902204847.2764-1-krzk@kernel.org
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
b41123f4f5
commit
8c7f51effd
|
|
@ -996,7 +996,7 @@ static irqreturn_t mmc_davinci_irq(int irq, void *dev_id)
|
|||
|
||||
if (qstatus & MMCST0_RSPDNE) {
|
||||
/* End of command phase */
|
||||
end_command = (int) host->cmd;
|
||||
end_command = host->cmd ? 1 : 0;
|
||||
}
|
||||
|
||||
if (end_command)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user