diff options
author | Ye Li <ye.li@nxp.com> | 2017-04-25 22:53:44 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-25 22:53:44 +0800 |
commit | a8a1132e1f2d1f8fe0f53758fd5be5673310225e (patch) | |
tree | e6db50c4f854605d5bb75b536391b9817d5fd3f4 | |
parent | 7c12a0043449d7a9788afa62d63e61bde6b1c8cb (diff) | |
download | u-boot-imx-a8a1132e1f2d1f8fe0f53758fd5be5673310225e.zip u-boot-imx-a8a1132e1f2d1f8fe0f53758fd5be5673310225e.tar.gz u-boot-imx-a8a1132e1f2d1f8fe0f53758fd5be5673310225e.tar.bz2 |
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 <ye.li@nxp.com>
-rw-r--r-- | drivers/net/fec_mxc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 2430f09..b626a6b 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" }, { } |