summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2023-03-21 15:55:37 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2023-03-21 15:57:20 +0100
commitb4fda34df72a021739881b79f87506de2caed19a (patch)
treed75b6742bf01df77153777a52a67c6d07043cf7e
parent6bd5212b3d431d4fdc2a0022a06c68939b145c52 (diff)
downloadbarebox-b4fda34df72a021739881b79f87506de2caed19a.tar.gz
barebox-b4fda34df72a021739881b79f87506de2caed19a.tar.xz
net: macb: Adjust zynq compatibles to upstream device trees
Linux v6.3-rc1 renamed the zynq macb compatibles from cdns,zynq-gem to xlnx,zynq-gem and cdns,zynqmp-gem to xlnx,zynqmp-gem. Adjust the compatibles in the driver accordingly. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/net/macb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/macb.c b/drivers/net/macb.c
index 3d7627fed8..9dd273a504 100644
--- a/drivers/net/macb.c
+++ b/drivers/net/macb.c
@@ -936,8 +936,8 @@ static const struct of_device_id macb_dt_ids[] = {
{ .compatible = "atmel,sama5d2-gem",},
{ .compatible = "atmel,sama5d3-gem",},
{ .compatible = "atmel,sama5d4-gem",},
- { .compatible = "cdns,zynq-gem",},
- { .compatible = "cdns,zynqmp-gem",},
+ { .compatible = "xlnx,zynq-gem",},
+ { .compatible = "xlnx,zynqmp-gem",},
{ .compatible = "sifive,fu540-c000-gem", .data = &fu540_c000_config },
{ /* sentinel */ }
};