dev-arm: Fix SMMUv3 DTB autogen (#934)

Replacing FdtProperyWords (expecting an integer) with FdtPropertyStrings

Change-Id: Icd1cf00704e253c88ac9b1d69c3cf946d2a8ca70

Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
This commit is contained in:
Giacomo Travaglini
2024-03-14 15:42:57 +00:00
committed by GitHub
parent 6f90feca56
commit 0ec8cf8d05

View File

@@ -220,7 +220,7 @@ class SMMUv3(ClockedObject):
if wired_interrupts:
node.append(FdtPropertyWords("interrupts", wired_interrupts))
node.append(
FdtPropertyWords(
FdtPropertyStrings(
"interrupt-names",
["eventq"],
)