All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] phy: da8xx-usb: Fix syscon device name
@ 2016-09-05 19:45 David Lechner
  2016-09-06  4:10 ` Kishon Vijay Abraham I
  0 siblings, 1 reply; 2+ messages in thread
From: David Lechner @ 2016-09-05 19:45 UTC (permalink / raw)
  To: Kishon Vijay Abraham I
  Cc: David Lechner, nsekhar, khilman, sergei.shtylyov, linux-kernel

The syscon device in board config/device tree has been renamed.

Signed-off-by: David Lechner <david@lechnology.com>
---

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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] phy: da8xx-usb: Fix syscon device name
  2016-09-05 19:45 [PATCH] phy: da8xx-usb: Fix syscon device name David Lechner
@ 2016-09-06  4:10 ` Kishon Vijay Abraham I
  0 siblings, 0 replies; 2+ messages in thread
From: Kishon Vijay Abraham I @ 2016-09-06  4:10 UTC (permalink / raw)
  To: David Lechner; +Cc: nsekhar, khilman, sergei.shtylyov, linux-kernel



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 <david@lechnology.com>

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);
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-09-06  4:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-05 19:45 [PATCH] phy: da8xx-usb: Fix syscon device name David Lechner
2016-09-06  4:10 ` Kishon Vijay Abraham I

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.