dt-validate warns that an implementation compatible with arm,psci-1.0
shouldn't have arm,psci in their compatible string.
psci: compatible: 'oneOf' conditional failed, one must be fixed:
['arm,psci-1.0', 'arm,psci-0.2', 'arm,psci'] is too long
From schema: linux/Documentation/devicetree/bindings/arm/psci.yaml
Signed-off-by: Jean-Philippe Brucker <[email protected]>
---
hw/arm/boot.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/arm/boot.c b/hw/arm/boot.c
index ada2717f76..527918227e 100644
--- a/hw/arm/boot.c
+++ b/hw/arm/boot.c
@@ -493,7 +493,7 @@ static void fdt_add_psci_node(void *fdt)
const char comp[] = "arm,psci-0.2\0arm,psci";
qemu_fdt_setprop(fdt, "/psci", "compatible", comp, sizeof(comp));
} else {
- const char comp[] = "arm,psci-1.0\0arm,psci-0.2\0arm,psci";
+ const char comp[] = "arm,psci-1.0\0arm,psci-0.2";
qemu_fdt_setprop(fdt, "/psci", "compatible", comp, sizeof(comp));
}
--
2.37.1