mfd: da9055: Use DEFINE_RES_IRQ_NAMED() to simplify code
authorZhen Lei <thunder.leizhen@huawei.com>
Tue, 1 Jun 2021 07:28:30 +0000 (15:28 +0800)
committerLee Jones <lee.jones@linaro.org>
Wed, 2 Jun 2021 09:51:19 +0000 (10:51 +0100)
No functional change.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/da9055-core.c

index d074d213e66170bfb1dc3eaf623bdccf52ea260d..c3bcbd8905c6cfa2e60dde1bdbb998d4ab725184 100644 (file)
@@ -254,41 +254,19 @@ const struct regmap_config da9055_regmap_config = {
 };
 EXPORT_SYMBOL_GPL(da9055_regmap_config);
 
-static const struct resource da9055_onkey_resource = {
-       .name = "ONKEY",
-       .start = DA9055_IRQ_NONKEY,
-       .end   = DA9055_IRQ_NONKEY,
-       .flags = IORESOURCE_IRQ,
-};
+static const struct resource da9055_onkey_resource =
+       DEFINE_RES_IRQ_NAMED(DA9055_IRQ_NONKEY, "ONKEY");
 
 static const struct resource da9055_rtc_resource[] = {
-       {
-               .name = "ALM",
-               .start = DA9055_IRQ_ALARM,
-               .end   = DA9055_IRQ_ALARM,
-               .flags = IORESOURCE_IRQ,
-       },
-       {
-               .name = "TICK",
-               .start = DA9055_IRQ_TICK,
-               .end   = DA9055_IRQ_TICK,
-               .flags = IORESOURCE_IRQ,
-       },
+       DEFINE_RES_IRQ_NAMED(DA9055_IRQ_ALARM, "ALM"),
+       DEFINE_RES_IRQ_NAMED(DA9055_IRQ_TICK, "TICK"),
 };
 
-static const struct resource da9055_hwmon_resource = {
-       .name = "HWMON",
-       .start = DA9055_IRQ_HWMON,
-       .end   = DA9055_IRQ_HWMON,
-       .flags = IORESOURCE_IRQ,
-};
+static const struct resource da9055_hwmon_resource =
+       DEFINE_RES_IRQ_NAMED(DA9055_IRQ_HWMON, "HWMON");
 
-static const struct resource da9055_ld05_6_resource = {
-       .name = "REGULATOR",
-       .start = DA9055_IRQ_REGULATOR,
-       .end   = DA9055_IRQ_REGULATOR,
-       .flags = IORESOURCE_IRQ,
-};
+static const struct resource da9055_ld05_6_resource =
+       DEFINE_RES_IRQ_NAMED(DA9055_IRQ_REGULATOR, "REGULATOR");
 
 static const struct mfd_cell da9055_devs[] = {
        {