From: Michael Grzeschik Date: Wed, 15 May 2013 13:03:14 +0000 (+0200) Subject: usb: otg: mxs-phy: add missing type to usb_phy X-Git-Tag: upstream/snapshot3+hdmi~5046^2~26^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e0aa635d069478e73ad95ff21fd4ae144faa189;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git usb: otg: mxs-phy: add missing type to usb_phy The mxs-phy is missing the phy.type property, why the usb_get_phy helper function won't be able to find it. This patch adds this missing property. Signed-off-by: Michael Grzeschik Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/phy/phy-mxs-usb.c b/drivers/usb/phy/phy-mxs-usb.c index 763250b..bd601c5 100644 --- a/drivers/usb/phy/phy-mxs-usb.c +++ b/drivers/usb/phy/phy-mxs-usb.c @@ -155,6 +155,7 @@ static int mxs_phy_probe(struct platform_device *pdev) mxs_phy->phy.set_suspend = mxs_phy_suspend; mxs_phy->phy.notify_connect = mxs_phy_on_connect; mxs_phy->phy.notify_disconnect = mxs_phy_on_disconnect; + mxs_phy->phy.type = USB_PHY_TYPE_USB2; ATOMIC_INIT_NOTIFIER_HEAD(&mxs_phy->phy.notifier);