diff options
author | Nicolas Ferre <nicolas.ferre@microchip.com> | 2019-09-27 16:08:32 +0300 |
---|---|---|
committer | Eugen Hristev <eugen.hristev@microchip.com> | 2019-10-08 09:16:11 +0300 |
commit | 39fa41608bbe23140748d0d1213d7fe1c8f8de4a (patch) | |
tree | 2f80082c61ffaf1554ce0e53470e118dc65ac9da /drivers/net/macb.c | |
parent | 37bd051e924aebefbdd9ef1b9e12256d6fcefcfe (diff) | |
download | u-boot-39fa41608bbe23140748d0d1213d7fe1c8f8de4a.tar.xz |
net: macb: Add sam9x60-macb compatibility string
Add this new compatibility string for matching sam9x60 product
macb.
Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Diffstat (limited to 'drivers/net/macb.c')
-rw-r--r-- | drivers/net/macb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 377188e361..1a532b0e5a 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c @@ -1321,6 +1321,7 @@ static const struct macb_config sifive_config = { static const struct udevice_id macb_eth_ids[] = { { .compatible = "cdns,macb" }, { .compatible = "cdns,at91sam9260-macb" }, + { .compatible = "cdns,sam9x60-macb" }, { .compatible = "atmel,sama5d2-gem" }, { .compatible = "atmel,sama5d3-gem" }, { .compatible = "atmel,sama5d4-gem", .data = (ulong)&sama5d4_config }, |