From: Ulf Hansson Date: Mon, 28 Oct 2013 01:51:41 +0000 (+0100) Subject: mmc: core: Silence compiler warning in __mmc_switch X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ecd3a7dad982aeba6409ef6d933fd7e372a70127;p=linux-beck.git mmc: core: Silence compiler warning in __mmc_switch Signed-off-by: Ulf Hansson Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/core/mmc_ops.c b/drivers/mmc/core/mmc_ops.c index aae8d8b45549..e5b5eeb548d1 100644 --- a/drivers/mmc/core/mmc_ops.c +++ b/drivers/mmc/core/mmc_ops.c @@ -414,7 +414,7 @@ int __mmc_switch(struct mmc_card *card, u8 set, u8 index, u8 value, int err; struct mmc_command cmd = {0}; unsigned long timeout; - u32 status; + u32 status = 0; bool ignore_crc = false; BUG_ON(!card);