From: David Lechner Date: Mon, 5 Sep 2016 19:45:46 +0000 (-0500) Subject: phy: da8xx-usb: Fix syscon device name X-Git-Tag: v4.14-rc1~2393^2~19^2^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4033d95218489375f598e89e99fcc6e4b4321732;p=platform%2Fkernel%2Flinux-rpi.git phy: da8xx-usb: Fix syscon device name The syscon device in board config/device tree has been renamed. Signed-off-by: David Lechner Signed-off-by: Kishon Vijay Abraham I --- 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);