The branch main has been updated by thj:

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

commit f8a3876e90d0bd7250664ccce36b485a91f4c51c
Author:     Tom Jones <[email protected]>
AuthorDate: 2026-02-09 10:28:18 +0000
Commit:     Tom Jones <[email protected]>
CommitDate: 2026-02-09 10:28:25 +0000

    if_awg: Add H616 compat string
    
    Reviewed by:    manu
    Sposored by:    The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D54907
---
 sys/arm/allwinner/if_awg.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys/arm/allwinner/if_awg.c b/sys/arm/allwinner/if_awg.c
index 98e879d22d3d..c66aab9422b8 100644
--- a/sys/arm/allwinner/if_awg.c
+++ b/sys/arm/allwinner/if_awg.c
@@ -144,6 +144,7 @@ enum awg_type {
        EMAC_H3,
        EMAC_A64,
        EMAC_D1,
+       EMAC_H616,
 };
 
 static struct ofw_compat_data compat_data[] = {
@@ -151,6 +152,7 @@ static struct ofw_compat_data compat_data[] = {
        { "allwinner,sun8i-h3-emac",            EMAC_H3 },
        { "allwinner,sun50i-a64-emac",          EMAC_A64 },
        { "allwinner,sun20i-d1-emac",           EMAC_D1 },
+       { "allwinner,sun50i-h616-emac",         EMAC_H616 },
        { NULL,                                 0 }
 };
 

Reply via email to