Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753542AbcCYDGH (ORCPT ); Thu, 24 Mar 2016 23:06:07 -0400 Received: from mail-lf0-f46.google.com ([209.85.215.46]:35408 "EHLO mail-lf0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750797AbcCYDGF (ORCPT ); Thu, 24 Mar 2016 23:06:05 -0400 From: Ruslan Bilovol To: kishon@ti.com Cc: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org Subject: [PATCH] phy: twl4030-usb: fix musb-hdrc name for non-dt case Date: Fri, 25 Mar 2016 05:05:57 +0200 Message-Id: <1458875157-19077-1-git-send-email-ruslan.bilovol@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 749 Lines: 25 musb device is allocated with PLATFORM_DEVID_AUTO, fix incorrect lookup name in non-dt case. This fixes issue with musb initialization on Nokia N900 in boardfile boot mode. Signed-off-by: Ruslan Bilovol --- drivers/phy/phy-twl4030-usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/phy/phy-twl4030-usb.c b/drivers/phy/phy-twl4030-usb.c index 840f3ea..a48214f 100644 --- a/drivers/phy/phy-twl4030-usb.c +++ b/drivers/phy/phy-twl4030-usb.c @@ -735,7 +735,7 @@ static int twl4030_usb_probe(struct platform_device *pdev) } if (pdata) - err = phy_create_lookup(phy, "usb", "musb-hdrc.0"); + err = phy_create_lookup(phy, "usb", "musb-hdrc.0.auto"); if (err) return err; -- 1.9.1