diff options
author | Jacky Chou <jacky_chou@aspeedtech.com> | 2024-09-10 15:49:34 +0800 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2024-09-11 20:34:48 +0800 |
commit | db378b0f18b497c2411c12a314c78cf71e638cbb (patch) | |
tree | 4186eb2aff31c0f084b29405be51092b228f0f45 | |
parent | c724f3ed74d0f6ddc5d75b10572dcc64be8a515b (diff) |
driver: net: Add Aspeed AST2700 MDIO support
The AST2700 is the 7th generation SoC from Aspeed.
And use the driver to support clause 22 access.
Signed-off-by: Jacky Chou <jacky_chou@aspeedtech.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
-rw-r--r-- | drivers/net/aspeed_mdio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/aspeed_mdio.c b/drivers/net/aspeed_mdio.c index f2e4392aa9a..2e1f3cdf11a 100644 --- a/drivers/net/aspeed_mdio.c +++ b/drivers/net/aspeed_mdio.c @@ -113,6 +113,7 @@ static int aspeed_mdio_probe(struct udevice *dev) static const struct udevice_id aspeed_mdio_ids[] = { { .compatible = "aspeed,ast2600-mdio" }, + { .compatible = "aspeed,ast2700-mdio" }, { } }; |