aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorZhen Lei <thunder.leizhen@huawei.com>2021-06-01 14:22:23 +0800
committerRob Herring <robh@kernel.org>2021-06-04 17:29:18 -0500
commit67c54655b6550c8e1d0f3213991257e9145dfb39 (patch)
tree77843be7b0472d0ed522a3df5b55253864cac7de /drivers/of
parentdt-bindings: usb: cdns,usb3: Fix interrupts order (diff)
downloadlinux-dev-67c54655b6550c8e1d0f3213991257e9145dfb39.tar.xz
linux-dev-67c54655b6550c8e1d0f3213991257e9145dfb39.zip
of: unittest: Use DEFINE_RES_MEM() to simplify code
No functional change. Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> Link: https://lore.kernel.org/r/20210601062223.9724-1-thunder.leizhen@huawei.com Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/unittest.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c
index 819a20acaa93..8c056972a6dd 100644
--- a/drivers/of/unittest.c
+++ b/drivers/of/unittest.c
@@ -1209,11 +1209,7 @@ static void __init of_unittest_match_node(void)
}
}
-static struct resource test_bus_res = {
- .start = 0xfffffff8,
- .end = 0xfffffff9,
- .flags = IORESOURCE_MEM,
-};
+static struct resource test_bus_res = DEFINE_RES_MEM(0xfffffff8, 2);
static const struct platform_device_info test_bus_info = {
.name = "unittest-bus",
};