mfd: sun6i-prcm: Use DEFINE_RES_MEM() to simplify code
authorZhen Lei <thunder.leizhen@huawei.com>
Tue, 1 Jun 2021 06:34:01 +0000 (14:34 +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/sun6i-prcm.c

index c31927d..ee03db0 100644 (file)
@@ -20,43 +20,23 @@ struct prcm_data {
 };
 
 static const struct resource sun6i_a31_ar100_clk_res[] = {
-       {
-               .start = 0x0,
-               .end = 0x3,
-               .flags = IORESOURCE_MEM,
-       },
+       DEFINE_RES_MEM(0x0, 4)
 };
 
 static const struct resource sun6i_a31_apb0_clk_res[] = {
-       {
-               .start = 0xc,
-               .end = 0xf,
-               .flags = IORESOURCE_MEM,
-       },
+       DEFINE_RES_MEM(0xc, 4)
 };
 
 static const struct resource sun6i_a31_apb0_gates_clk_res[] = {
-       {
-               .start = 0x28,
-               .end = 0x2b,
-               .flags = IORESOURCE_MEM,
-       },
+       DEFINE_RES_MEM(0x28, 4)
 };
 
 static const struct resource sun6i_a31_ir_clk_res[] = {
-       {
-               .start = 0x54,
-               .end = 0x57,
-               .flags = IORESOURCE_MEM,
-       },
+       DEFINE_RES_MEM(0x54, 4)
 };
 
 static const struct resource sun6i_a31_apb0_rstc_res[] = {
-       {
-               .start = 0xb0,
-               .end = 0xb3,
-               .flags = IORESOURCE_MEM,
-       },
+       DEFINE_RES_MEM(0xb0, 4)
 };
 
 static const struct resource sun8i_codec_analog_res[] = {