Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mmc: mediatek: Avoid ugly error message when SDIO wakeup IRQ isn't used

When I boot a kukui-kodama board, I see an ugly warning in my kernel
log:
mtk-msdc 11240000.mmc: error -ENXIO: IRQ sdio_wakeup not found

It's pretty normal not to have an "sdio_wakeup" IRQ defined. In fact,
no device trees in mainline seem to have it. Let's use the
platform_get_irq_byname_optional() to avoid the error message.

Fixes: 527f36f5efa4 ("mmc: mediatek: add support for SDIO eint wakup IRQ")
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Link: https://lore.kernel.org/r/20230510064434.1.I935404c5396e6bf952e99bb7ffb744c6f7fd430b@changeid
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

authored by

Douglas Anderson and committed by
Ulf Hansson
a3332b7a 6151bc77

+1 -1
+1 -1
drivers/mmc/host/mtk-sd.c
··· 2707 2707 2708 2708 /* Support for SDIO eint irq ? */ 2709 2709 if ((mmc->pm_caps & MMC_PM_WAKE_SDIO_IRQ) && (mmc->pm_caps & MMC_PM_KEEP_POWER)) { 2710 - host->eint_irq = platform_get_irq_byname(pdev, "sdio_wakeup"); 2710 + host->eint_irq = platform_get_irq_byname_optional(pdev, "sdio_wakeup"); 2711 2711 if (host->eint_irq > 0) { 2712 2712 host->pins_eint = pinctrl_lookup_state(host->pinctrl, "state_eint"); 2713 2713 if (IS_ERR(host->pins_eint)) {