diff --git a/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c b/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c index 9ec715e4d..72f7f0cf2 100644 --- a/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c +++ b/Buildscripts/DevicetreeCompiler/tests/data/expected_devicetree.c @@ -13,6 +13,7 @@ static struct Device root = { .address = 0, .name = "/", .config = &root_config, + .flags = DEVICE_FLAG_DTS, .parent = NULL, .internal = NULL }; @@ -27,6 +28,7 @@ static struct Device test_device = { .address = 0, .name = "test-device", .config = &test_device_config, + .flags = DEVICE_FLAG_DTS, .parent = &root, .internal = NULL }; @@ -43,6 +45,7 @@ static struct Device bool_test_device = { .address = 0, .name = "bool-test-device", .config = &bool_test_device_config, + .flags = DEVICE_FLAG_DTS, .parent = &root, .internal = NULL };