summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2017-01-10 07:09:10 -0800
committerSascha Hauer <s.hauer@pengutronix.de>2017-01-12 07:42:32 +0100
commit91bfa2dca037019b61f7c2d51d0e19958cd37ca1 (patch)
tree5fab851e9cf35ea1778d7d5c3f7b22c1e21392ee /drivers
parent69dbc8b565d2d7cc836d4045dfca7f7331d59634 (diff)
downloadbarebox-91bfa2dca037019b61f7c2d51d0e19958cd37ca1.tar.gz
barebox-91bfa2dca037019b61f7c2d51d0e19958cd37ca1.tar.xz
i.MX: imx-usb-phy: Add VF610 OF compatiblity string
From looking at analogous Linux driver code it seems that all of the differences between code "imx23-usbphy" and "vf610-usbphy" pertain to suspend/resume functionality, which shouldn't affetct Barebox. As a result this commit just adds a compatiblity string and no other code. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/imx/imx-usb-phy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/imx/imx-usb-phy.c b/drivers/usb/imx/imx-usb-phy.c
index 9f46f8de6d..274153bd58 100644
--- a/drivers/usb/imx/imx-usb-phy.c
+++ b/drivers/usb/imx/imx-usb-phy.c
@@ -168,6 +168,8 @@ static __maybe_unused struct of_device_id imx_usbphy_dt_ids[] = {
{
.compatible = "fsl,imx23-usbphy",
}, {
+ .compatible = "fsl,vf610-usbphy",
+ }, {
/* sentinel */
},
};