usb: gadget: mv_udc_core: check against CONFIG_USB_PHY

CONFIG_USB_OTG_UTILS will be removed very
soon, so we should check CONFIG_USB_PHY
instead.

Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
Felipe Balbi 2013-03-07 11:24:08 +02:00
parent 820d08835d
commit 1d3dbfc3a7
1 changed files with 1 additions and 1 deletions

View File

@ -2127,7 +2127,7 @@ static int mv_udc_probe(struct platform_device *pdev)
udc->dev = pdev; udc->dev = pdev;
#ifdef CONFIG_USB_OTG_UTILS #if IS_ENABLED(CONFIG_USB_PHY)
if (pdata->mode == MV_USB_MODE_OTG) { if (pdata->mode == MV_USB_MODE_OTG) {
udc->transceiver = devm_usb_get_phy(&pdev->dev, udc->transceiver = devm_usb_get_phy(&pdev->dev,
USB_PHY_TYPE_USB2); USB_PHY_TYPE_USB2);