All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>,
	"pawel.moll@arm.com" <pawel.moll@arm.com>,
	"mark.rutland@arm.com" <mark.rutland@arm.com>,
	"ijc+devicetree@hellion.org.uk" <ijc+devicetree@hellion.org.uk>,
	"galak@codeaurora.org" <galak@codeaurora.org>,
	"kishon@ti.com" <kishon@ti.com>,
	"grant.likely@linaro.org" <grant.likely@linaro.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Cc: "rdunlap@infradead.org" <rdunlap@infradead.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>
Subject: Re: [PATCH v4] phy: Renesas R-Car Gen2 PHY driver
Date: Tue, 27 May 2014 19:38:36 +0000	[thread overview]
Message-ID: <5384E9BC.8090202@cogentembedded.com> (raw)
In-Reply-To: <53845B05.80900@renesas.com>

Hello.

On 05/27/2014 01:29 PM, Yoshihiro Shimoda wrote:

>> +Example (Lager board):
>> +
>> +	usb-phy@e6590100 {
>> +		compatible = "renesas,usb-phy-r8a7790";
>> +		reg = <0 0xe6590100 0 0x100>;
>> +		#phy-cells = <2>;
>> +		clocks = <&mstp7_clks R8A7790_CLK_HSUSB>;
>> +		clock-names = "usbhs";

> I'm not sure about the clock-names string,
> but the current clock-name of R8A7790_CLK_HSUSB

    I guess you meant "clock-output-names" prop?

> is "hsusb" in r8a7790.dtsi.

    Yes. But it doesn't have to match to what's passed to devm_clk_get().

> So, before I tested this driver, I changed the "hsusb" to "usbhs".
> Otherwise, the devm_clk_get() in the driver failed.

    This is very strange, the driver works OK for me.

> < snip >
>> +	for_each_child_of_node(dev->of_node, np) {
>> +  		struct rcar_gen2_phy *phy;
>
> This line has two while spaces at the start of the line.

    Thank you, looks like I cut&pasted from a bad source and forgot to run the 
patch thru scripts/checkpatch.pl...

> Best regards,
> Yoshihiro Shimoda

WBR, Sergei


WARNING: multiple messages have this Message-ID (diff)
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>,
	"pawel.moll@arm.com" <pawel.moll@arm.com>,
	"mark.rutland@arm.com" <mark.rutland@arm.com>,
	"ijc+devicetree@hellion.org.uk" <ijc+devicetree@hellion.org.uk>,
	"galak@codeaurora.org" <galak@codeaurora.org>,
	"kishon@ti.com" <kishon@ti.com>,
	"grant.likely@linaro.org" <grant.likely@linaro.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Cc: "rdunlap@infradead.org" <rdunlap@infradead.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	"linux-sh@vger.kernel.org" <linux-sh@vger.kernel.org>
Subject: Re: [PATCH v4] phy: Renesas R-Car Gen2 PHY driver
Date: Tue, 27 May 2014 23:38:36 +0400	[thread overview]
Message-ID: <5384E9BC.8090202@cogentembedded.com> (raw)
In-Reply-To: <53845B05.80900@renesas.com>

Hello.

On 05/27/2014 01:29 PM, Yoshihiro Shimoda wrote:

>> +Example (Lager board):
>> +
>> +	usb-phy@e6590100 {
>> +		compatible = "renesas,usb-phy-r8a7790";
>> +		reg = <0 0xe6590100 0 0x100>;
>> +		#phy-cells = <2>;
>> +		clocks = <&mstp7_clks R8A7790_CLK_HSUSB>;
>> +		clock-names = "usbhs";

> I'm not sure about the clock-names string,
> but the current clock-name of R8A7790_CLK_HSUSB

    I guess you meant "clock-output-names" prop?

> is "hsusb" in r8a7790.dtsi.

    Yes. But it doesn't have to match to what's passed to devm_clk_get().

> So, before I tested this driver, I changed the "hsusb" to "usbhs".
> Otherwise, the devm_clk_get() in the driver failed.

    This is very strange, the driver works OK for me.

> < snip >
>> +	for_each_child_of_node(dev->of_node, np) {
>> +  		struct rcar_gen2_phy *phy;
>
> This line has two while spaces at the start of the line.

    Thank you, looks like I cut&pasted from a bad source and forgot to run the 
patch thru scripts/checkpatch.pl...

> Best regards,
> Yoshihiro Shimoda

WBR, Sergei


  reply	other threads:[~2014-05-27 19:38 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-23 22:06 [PATCH v4] phy: Renesas R-Car Gen2 PHY driver Sergei Shtylyov
2014-05-23 22:06 ` Sergei Shtylyov
2014-05-26  7:28 ` Geert Uytterhoeven
2014-05-26  7:28   ` Geert Uytterhoeven
2014-05-26  7:48   ` Simon Horman
2014-05-26  7:48     ` Simon Horman
2014-05-26  8:04     ` Geert Uytterhoeven
2014-05-26  8:04       ` Geert Uytterhoeven
2014-05-26  9:00       ` Simon Horman
2014-05-26  9:00         ` Simon Horman
2014-05-27  9:29 ` Yoshihiro Shimoda
2014-05-27  9:29   ` Yoshihiro Shimoda
2014-05-27 19:38   ` Sergei Shtylyov [this message]
2014-05-27 19:38     ` Sergei Shtylyov
2014-05-28  1:12     ` Yoshihiro Shimoda
2014-05-28  1:12       ` Yoshihiro Shimoda
2014-06-04 11:40 ` Kishon Vijay Abraham I
2014-06-04 11:52   ` Kishon Vijay Abraham I
2014-06-04 21:54   ` Sergei Shtylyov
2014-06-04 21:54     ` Sergei Shtylyov
2014-06-09 11:43     ` Laurent Pinchart
2014-06-09 11:43       ` Laurent Pinchart
2014-06-10 10:43     ` Kishon Vijay Abraham I
2014-06-10 10:55       ` Kishon Vijay Abraham I
2014-06-25 22:16       ` Sergei Shtylyov
2014-06-25 22:16         ` Sergei Shtylyov
2014-07-01 13:11         ` Kishon Vijay Abraham I
2014-07-01 13:23           ` Kishon Vijay Abraham I
2014-07-04 20:53           ` Sergei Shtylyov
2014-07-04 20:53             ` Sergei Shtylyov
2014-07-08 12:20             ` Kishon Vijay Abraham I
2014-07-08 12:32               ` Kishon Vijay Abraham I
2014-07-08 21:27               ` Sergei Shtylyov
2014-07-08 21:27                 ` Sergei Shtylyov
2014-06-09 11:44 ` Laurent Pinchart
2014-06-09 11:44   ` Laurent Pinchart
2014-06-09 12:34   ` Sergei Shtylyov
2014-06-09 12:34     ` Sergei Shtylyov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5384E9BC.8090202@cogentembedded.com \
    --to=sergei.shtylyov@cogentembedded.com \
    --cc=devicetree@vger.kernel.org \
    --cc=galak@codeaurora.org \
    --cc=grant.likely@linaro.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=kishon@ti.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-sh@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=rdunlap@infradead.org \
    --cc=robh+dt@kernel.org \
    --cc=yoshihiro.shimoda.uh@renesas.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.