diff mbox series

[4/4] mfd: rk808: use DEFINE_RES_IRQ for rk808 rtc alarm irq

Message ID 20190917081256.24919-4-heiko@sntech.de (mailing list archive)
State New, archived
Headers show
Series [1/4] mfd: rk808: fix rk818 ID template | expand

Commit Message

Heiko Stuebner Sept. 17, 2019, 8:12 a.m. UTC
Do not open code the definition, instead use the nice DEFINE_RES_IRQ
macro for it.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
---
 drivers/mfd/rk808.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

Comments

Lee Jones Oct. 4, 2019, 12:06 p.m. UTC | #1
On Tue, 17 Sep 2019, Heiko Stuebner wrote:

> Do not open code the definition, instead use the nice DEFINE_RES_IRQ
> macro for it.
> 
> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> ---
>  drivers/mfd/rk808.c | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)

Applied, thanks.
diff mbox series

Patch

diff --git a/drivers/mfd/rk808.c b/drivers/mfd/rk808.c
index c0e5e921766d..a69a6742ecdc 100644
--- a/drivers/mfd/rk808.c
+++ b/drivers/mfd/rk808.c
@@ -109,11 +109,7 @@  static const struct regmap_config rk817_regmap_config = {
 };
 
 static struct resource rtc_resources[] = {
-	{
-		.start  = RK808_IRQ_RTC_ALARM,
-		.end    = RK808_IRQ_RTC_ALARM,
-		.flags  = IORESOURCE_IRQ,
-	}
+	DEFINE_RES_IRQ(RK808_IRQ_RTC_ALARM),
 };
 
 static struct resource rk817_rtc_resources[] = {