From: Ulf Hansson Date: Sun, 8 Sep 2019 10:12:32 +0000 (+0200) Subject: mmc: core: WARN if SDIO IRQs are enabled for non-powered card in suspend X-Git-Tag: v5.4-rc1~147^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c5d3e8fa1a1bf28ac9997421fd18fcbecef941bd;p=thirdparty%2Fkernel%2Flinux.git mmc: core: WARN if SDIO IRQs are enabled for non-powered card in suspend To make sure SDIO func drivers behaves correctly during system suspend/resume, let add a WARN_ON in case the condition is a non-powered SDIO card and there are some SDIO IRQs still being claimed. Tested-by: Matthias Kaehlcke Reviewed-by: Matthias Kaehlcke Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index 8dd8fc32eccaf..c557f1519b771 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c @@ -951,6 +951,8 @@ static int mmc_sdio_pre_suspend(struct mmc_host *host) */ static int mmc_sdio_suspend(struct mmc_host *host) { + WARN_ON(host->sdio_irqs && !mmc_card_keep_power(host)); + /* Prevent processing of SDIO IRQs in suspended state. */ mmc_card_set_suspended(host->card); cancel_delayed_work_sync(&host->sdio_irq_work);