From a8a1132e1f2d1f8fe0f53758fd5be5673310225e Mon Sep 17 00:00:00 2001 From: Ye Li Date: Tue, 25 Apr 2017 22:53:44 +0800 Subject: [PATCH] MLK-14750 mxc_fec: Add compatible string for i.mx6sl The compatible string "fsl,imx6sl-fec" is missed for i.mx6sl in u-boot FEC driver, so that FEC can't be recognized. Signed-off-by: Ye Li --- drivers/net/fec_mxc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 2430f0903d..b626a6b9d0 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -1326,6 +1326,7 @@ static int fecmxc_ofdata_to_platdata(struct udevice *dev) static const struct udevice_id fecmxc_ids[] = { { .compatible = "fsl,imx6q-fec" }, + { .compatible = "fsl,imx6sl-fec" }, { .compatible = "fsl,imx6sx-fec" }, { .compatible = "fsl,imx7d-fec" }, { } -- 2.17.1