summaryrefslogtreecommitdiffstats
path: root/drivers/net/fec_imx.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-05-19 12:41:52 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-21 09:36:35 +0200
commit0585980bca6da4490c8c895c1d24ac62add3c28c (patch)
treed453ed8768218d8ce3dbeb04006bb7d2f4f33668 /drivers/net/fec_imx.c
parent2995752d758df5ba5fc41f69e4a61ebb51e4366f (diff)
downloadbarebox-0585980bca6da4490c8c895c1d24ac62add3c28c.tar.gz
barebox-0585980bca6da4490c8c895c1d24ac62add3c28c.tar.xz
net: fec: Add imx25 compatible property
The i.MX53 fec claims to be compatible to i.MX25 and i.MX53. In barebox we do not have to make differences between i.MX25 and i.MX27 though, so just fall back to i.MX27. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/net/fec_imx.c')
-rw-r--r--drivers/net/fec_imx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/fec_imx.c b/drivers/net/fec_imx.c
index 1a85d15b7b..96c4ac3247 100644
--- a/drivers/net/fec_imx.c
+++ b/drivers/net/fec_imx.c
@@ -746,6 +746,9 @@ static void fec_remove(struct device_d *dev)
static __maybe_unused struct of_device_id imx_fec_dt_ids[] = {
{
+ .compatible = "fsl,imx25-fec",
+ .data = FEC_TYPE_IMX27,
+ }, {
.compatible = "fsl,imx27-fec",
.data = FEC_TYPE_IMX27,
}, {