From f42b3b30b002806e76399cfe9a0398618d36961a Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Sun, 21 Jun 2026 00:22:03 +0200 Subject: [PATCH] Fix for test --- .../tests/data/expected_devicetree.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c b/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c index 866ed3544..925b6aff5 100644 --- a/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c +++ b/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c @@ -10,22 +10,23 @@ static const root_config_dt root_config = { }; static struct Device root = { - .address = 0, + .address = 0, .name = "/", .config = &root_config, .parent = NULL, .internal = NULL }; -static const generic_device_config_dt test_device@0_config = { +static const generic_device_config_dt test_device_0_config = { 0, 42, "hello" }; -static struct Device test_device@0 = { +static struct Device test_device_0 = { + .address = 0, .name = "test-device@0", - .config = &test_device@0_config, + .config = &test_device_0_config, .parent = &root, .internal = NULL }; @@ -47,7 +48,7 @@ static struct Device bool_test_device = { struct DtsDevice dts_devices[] = { { &root, "test,root", DTS_DEVICE_STATUS_OKAY }, - { &test_device@0, "test,generic-device", DTS_DEVICE_STATUS_OKAY }, + { &test_device_0, "test,generic-device", DTS_DEVICE_STATUS_OKAY }, { &bool_test_device, "test,bool-device", DTS_DEVICE_STATUS_OKAY }, DTS_DEVICE_TERMINATOR };