The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=cb00fc7c4d92a4a2fc240470a8ea67d5aa04b20c
commit cb00fc7c4d92a4a2fc240470a8ea67d5aa04b20c Author: Emmanuel Vadot <[email protected]> AuthorDate: 2021-01-05 19:50:43 +0000 Commit: Emmanuel Vadot <[email protected]> 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 } }; _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
