From d006d96378c93d4bdebed297dfd8547b039aca47 Mon Sep 17 00:00:00 2001 From: Changyuan Lyu Date: Tue, 27 Jan 2026 18:17:26 -0800 Subject: [PATCH] fix(dt): remove msi-parent property from PCI bridge node The `msi-parent` property was triggering a guest kernel warning because the kernel expects a DeviceID after the property's phandle: [ 0.199453] OF: /pci@30000000: #msi-cells = 1 found 0 This property is not required for `pci-host-ecam-generic`. Removing it resolves the warning. Signed-off-by: Changyuan Lyu --- alioth/src/board/board_aarch64.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/alioth/src/board/board_aarch64.rs b/alioth/src/board/board_aarch64.rs index c7acc9b8..56b8d0a0 100644 --- a/alioth/src/board/board_aarch64.rs +++ b/alioth/src/board/board_aarch64.rs @@ -516,7 +516,6 @@ where // Documentation/devicetree/bindings/pci/pci-msi.txt PropVal::U32List(vec![0, PHANDLE_MSI, 0, 0x10000]), ), - ("msi-parent", PropVal::PHandle(PHANDLE_MSI)), ]), nodes: Vec::new(), };