diff options
| author | Tom Jones <thj@FreeBSD.org> | 2026-02-09 10:28:18 +0000 |
|---|---|---|
| committer | Tom Jones <thj@FreeBSD.org> | 2026-02-09 10:28:25 +0000 |
| commit | f8a3876e90d0bd7250664ccce36b485a91f4c51c (patch) | |
| tree | eb538a16211dd8dd1dd1f819022a96bd7653c428 | |
| parent | 245cdec79249957e318dac21f9208a9117a98f31 (diff) | |
if_awg: Add H616 compat string
Reviewed by: manu
Sposored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D54907
| -rw-r--r-- | sys/arm/allwinner/if_awg.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 } }; |
