From 592c396dcf4614b5e109fa182c71f70302d85935 Mon Sep 17 00:00:00 2001 From: Louis Mayencourt Date: Mon, 20 Apr 2020 14:17:21 +0100 Subject: fconf: Update dyn_config compatible string Dynamic configuration properties are fconf properties. Modify the compatible string from "arm,.." to "fconf,.." to reflect this. Signed-off-by: Louis Mayencourt Change-Id: I85eb75cf877c5f4d3feea3936d4c348ca843bc6c --- lib/fconf/fconf_dyn_cfg_getter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/fconf') diff --git a/lib/fconf/fconf_dyn_cfg_getter.c b/lib/fconf/fconf_dyn_cfg_getter.c index 317d3e5d3..56e0c4ae7 100644 --- a/lib/fconf/fconf_dyn_cfg_getter.c +++ b/lib/fconf/fconf_dyn_cfg_getter.c @@ -48,8 +48,8 @@ int fconf_populate_dtb_registry(uintptr_t config) /* As libfdt use void *, we can't avoid this cast */ const void *dtb = (void *)config; - /* Find the node offset point to "arm,dyn_cfg-dtb_registry" compatible property */ - const char *compatible_str = "arm,dyn_cfg-dtb_registry"; + /* Find the node offset point to "fconf,dyn_cfg-dtb_registry" compatible property */ + const char *compatible_str = "fconf,dyn_cfg-dtb_registry"; node = fdt_node_offset_by_compatible(dtb, -1, compatible_str); if (node < 0) { ERROR("FCONF: Can't find %s compatible in dtb\n", compatible_str); -- cgit v1.2.3