The compatible property of the Arm timer should contain either
"arm,armv7-timer" or "arm,armv8-timer", not both.
timer: compatible: 'oneOf' conditional failed, one must be fixed:
['arm,armv8-timer', 'arm,armv7-timer'] is too long
From schema: linux/Documentation/devicetree/bindings/timer/arm,arch_timer.yaml
Signed-off-by: Jean-Philippe Brucker <[email protected]>
---
hw/arm/virt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
index ca5d213895..5935f32a44 100644
--- a/hw/arm/virt.c
+++ b/hw/arm/virt.c
@@ -344,7 +344,7 @@ static void fdt_add_timer_nodes(const VirtMachineState *vms)
armcpu = ARM_CPU(qemu_get_cpu(0));
if (arm_feature(&armcpu->env, ARM_FEATURE_V8)) {
- const char compat[] = "arm,armv8-timer\0arm,armv7-timer";
+ const char compat[] = "arm,armv8-timer";
qemu_fdt_setprop(ms->fdt, "/timer", "compatible",
compat, sizeof(compat));
} else {
--
2.37.1