diff options
author | Wenyou Yang | 2017-04-14 14:36:05 +0800 |
---|---|---|
committer | Simon Glass | 2017-05-09 12:14:15 -0600 |
commit | 75460253417213a1b9b21beee20d8f1dc8bbae8f (patch) | |
tree | 704f8909e1e7acc21f73da3b7a9c49d3188dd2f5 | |
parent | 1870d4d7bd229e5e06d660108046656ea24821d4 (diff) |
net: macb: Align the compatibles with kernel
Add the compatibles to align with the kernel.
Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
-rw-r--r-- | drivers/net/macb.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 08d441c8978..21a620c244c 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c @@ -1096,6 +1096,10 @@ static int macb_eth_ofdata_to_platdata(struct udevice *dev) static const struct udevice_id macb_eth_ids[] = { { .compatible = "cdns,macb" }, + { .compatible = "cdns,at91sam9260-macb" }, + { .compatible = "atmel,sama5d2-gem" }, + { .compatible = "atmel,sama5d3-gem" }, + { .compatible = "atmel,sama5d4-gem" }, { } }; |