mmc: sh_mmcif: Use platform_get_irq_optional() for optional interrupt
authorGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 1 Oct 2019 18:08:34 +0000 (20:08 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Thu, 3 Oct 2019 09:38:37 +0000 (11:38 +0200)
commitfaf97b84fa86d40eba5a30e9071dfb55133fb1b7
tree43ed26605ea6be613c9bb423359e30ccf137029e
parente8307ec51efebf579da5966aa5da5ab5353c61c7
mmc: sh_mmcif: Use platform_get_irq_optional() for optional interrupt

As platform_get_irq() now prints an error when the interrupt does not
exist, a scary warning may be printed for an optional interrupt:

    sh_mmcif ee200000.mmc: IRQ index 1 not found

Fix this by calling platform_get_irq_optional() instead for the second
interrupt, which is optional.

Remove the now superfluous error printing for the first interrupt, which
is mandatory.

Fixes: 7723f4c5ecdb8d83 ("driver core: platform: Add an error message to platform_get_irq*()")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Tested-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Tested-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sh_mmcif.c