git: 59a844b9cea7 - main - mpc85xx/msi: Add compat string for T208x/T4xxx SoCs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 30 Apr 2026 00:18:14 UTC
The branch main has been updated by jhibbits:
URL: https://cgit.FreeBSD.org/src/commit/?id=59a844b9cea7bbe92b3899805acd1699c5006ed7
commit 59a844b9cea7bbe92b3899805acd1699c5006ed7
Author: Justin Hibbits <jhibbits@FreeBSD.org>
AuthorDate: 2026-04-16 01:48:21 +0000
Commit: Justin Hibbits <jhibbits@FreeBSD.org>
CommitDate: 2026-04-30 00:14:35 +0000
mpc85xx/msi: Add compat string for T208x/T4xxx SoCs
---
sys/powerpc/mpc85xx/pci_mpc85xx.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sys/powerpc/mpc85xx/pci_mpc85xx.c b/sys/powerpc/mpc85xx/pci_mpc85xx.c
index 33dca7ab6c50..6616ea2169d1 100644
--- a/sys/powerpc/mpc85xx/pci_mpc85xx.c
+++ b/sys/powerpc/mpc85xx/pci_mpc85xx.c
@@ -895,7 +895,8 @@ fsl_msi_intr_filter(void *priv)
static int
fsl_msi_probe(device_t dev)
{
- if (!ofw_bus_is_compatible(dev, "fsl,mpic-msi"))
+ if (!ofw_bus_is_compatible(dev, "fsl,mpic-msi") &&
+ !ofw_bus_is_compatible(dev, "fsl,mpic-msi-v4.3"))
return (ENXIO);
device_set_desc(dev, "Freescale MSI");