mfd: 88pm805: Use DEFINE_RES_IRQ_NAMED() to simplify code

No functional change.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
Zhen Lei 2021-06-01 15:04:25 +08:00 committed by Lee Jones
parent 5c058e92ad
commit ba4672ad10

View File

@ -54,27 +54,14 @@ enum {
}; };
static struct resource codec_resources[] = { static struct resource codec_resources[] = {
{
/* Headset microphone insertion or removal */ /* Headset microphone insertion or removal */
.name = "micin", DEFINE_RES_IRQ_NAMED(PM805_IRQ_MIC_DET, "micin"),
.start = PM805_IRQ_MIC_DET,
.end = PM805_IRQ_MIC_DET,
.flags = IORESOURCE_IRQ,
},
{
/* Audio short HP1 */ /* Audio short HP1 */
.name = "audio-short1", DEFINE_RES_IRQ_NAMED(PM805_IRQ_HP1_SHRT, "audio-short1"),
.start = PM805_IRQ_HP1_SHRT,
.end = PM805_IRQ_HP1_SHRT,
.flags = IORESOURCE_IRQ,
},
{
/* Audio short HP2 */ /* Audio short HP2 */
.name = "audio-short2", DEFINE_RES_IRQ_NAMED(PM805_IRQ_HP2_SHRT, "audio-short2"),
.start = PM805_IRQ_HP2_SHRT,
.end = PM805_IRQ_HP2_SHRT,
.flags = IORESOURCE_IRQ,
},
}; };
static const struct mfd_cell codec_devs[] = { static const struct mfd_cell codec_devs[] = {