From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933478AbcIETq2 (ORCPT ); Mon, 5 Sep 2016 15:46:28 -0400 Received: from vern.gendns.com ([206.190.152.46]:56545 "EHLO vern.gendns.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932352AbcIETqZ (ORCPT ); Mon, 5 Sep 2016 15:46:25 -0400 From: David Lechner To: Kishon Vijay Abraham I Cc: David Lechner , nsekhar@ti.com, khilman@kernel.org, sergei.shtylyov@cogentembedded.com, linux-kernel@vger.kernel.org Subject: [PATCH] phy: da8xx-usb: Fix syscon device name Date: Mon, 5 Sep 2016 14:45:46 -0500 Message-Id: <1473104746-17702-1-git-send-email-david@lechnology.com> X-Mailer: git-send-email 2.7.4 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - vern.gendns.com X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - lechnology.com X-Get-Message-Sender-Via: vern.gendns.com: authenticated_id: davidmain+lechnology.com/only user confirmed/virtual account not confirmed X-Authenticated-Sender: vern.gendns.com: davidmain@lechnology.com X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The syscon device in board config/device tree has been renamed. Signed-off-by: David Lechner --- 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); -- 2.7.4