From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754305AbcIFELU (ORCPT ); Tue, 6 Sep 2016 00:11:20 -0400 Received: from arroyo.ext.ti.com ([198.47.19.12]:38502 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750757AbcIFELS (ORCPT ); Tue, 6 Sep 2016 00:11:18 -0400 Subject: Re: [PATCH] phy: da8xx-usb: Fix syscon device name To: David Lechner References: <1473104746-17702-1-git-send-email-david@lechnology.com> CC: , , , From: Kishon Vijay Abraham I Message-ID: <57CE41AE.3010107@ti.com> Date: Tue, 6 Sep 2016 09:40:22 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 In-Reply-To: <1473104746-17702-1-git-send-email-david@lechnology.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday 06 September 2016 01:15 AM, David Lechner wrote: > The syscon device in board config/device tree has been renamed. > > Signed-off-by: David Lechner merged, thanks. -Kishon > --- > > This is a follow-up of the "da8xx USB PHY platform devices and clocks" patch > series. Just a small but important detail that slipped through the cracks. > > drivers/phy/phy-da8xx-usb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/phy/phy-da8xx-usb.c b/drivers/phy/phy-da8xx-usb.c > index b2e59b6..32ae78c 100644 > --- a/drivers/phy/phy-da8xx-usb.c > +++ b/drivers/phy/phy-da8xx-usb.c > @@ -154,7 +154,7 @@ static int da8xx_usb_phy_probe(struct platform_device *pdev) > d_phy->regmap = syscon_regmap_lookup_by_compatible( > "ti,da830-cfgchip"); > else > - d_phy->regmap = syscon_regmap_lookup_by_pdevname("syscon.0"); > + d_phy->regmap = syscon_regmap_lookup_by_pdevname("syscon"); > if (IS_ERR(d_phy->regmap)) { > dev_err(dev, "Failed to get syscon\n"); > return PTR_ERR(d_phy->regmap); >