Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jan 2021 19:52:16 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: cb00fc7c4d92 - main - arm64: genet: Add bcm2711-genet-v5 compatible
Message-ID:  <202101051952.105JqGD5072251@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=cb00fc7c4d92a4a2fc240470a8ea67d5aa04b20c

commit cb00fc7c4d92a4a2fc240470a8ea67d5aa04b20c
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2021-01-05 19:50:43 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2021-01-05 19:50:43 +0000

    arm64: genet: Add bcm2711-genet-v5 compatible
    
    Later dtb from the RPI Foundation removed the brcm,genet-v5 compatible
    for some unknown reason, add brcm,bcm2711-genet-v5 to the list of compatible
    device for if_genet
---
 sys/arm64/broadcom/genet/if_genet.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/arm64/broadcom/genet/if_genet.c b/sys/arm64/broadcom/genet/if_genet.c
index 9c8b322dee87..5f2dfcc40395 100644
--- a/sys/arm64/broadcom/genet/if_genet.c
+++ b/sys/arm64/broadcom/genet/if_genet.c
@@ -111,6 +111,7 @@ static struct ofw_compat_data compat_data[] = {
 	{ "brcm,genet-v3",		3 },
 	{ "brcm,genet-v4",		4 },
 	{ "brcm,genet-v5",		5 },
+	{ "brcm,bcm2711-genet-v5",	5 },
 	{ NULL,				0 }
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101051952.105JqGD5072251>