9
0
Fork 0

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>
This commit is contained in:
Sascha Hauer 2013-05-19 12:41:52 +02:00
parent 2995752d75
commit 0585980bca
1 changed files with 3 additions and 0 deletions

View File

@ -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,
}, {