git: 5f702d6d9a87 - main - vchiq: Add compat string for rpi4
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 27 Feb 2022 16:47:59 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=5f702d6d9a876b7c2e90f8b2c630194fa2668ade
commit 5f702d6d9a876b7c2e90f8b2c630194fa2668ade
Author: Marco Devesas Campos <devesas.campos@gmail.com>
AuthorDate: 2022-02-27 16:37:56 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-02-27 16:46:49 +0000
vchiq: Add compat string for rpi4
The RPi 4 has a newer vchiq compatible device, add it to the list.
Reviewed by: imp
---
sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c b/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c
index 53d1819c6cde..a42ec8249844 100644
--- a/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c
+++ b/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c
@@ -83,6 +83,7 @@ static struct bcm_vchiq_softc *bcm_vchiq_sc = NULL;
static struct ofw_compat_data compat_data[] = {
{"broadcom,bcm2835-vchiq", BSD_DTB},
{"brcm,bcm2835-vchiq", UPSTREAM_DTB},
+ {"brcm,bcm2711-vchiq", UPSTREAM_DTB},
{NULL, 0}
};