linux-renesas-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] arm64: dts: r8a77990-ebisu: small fixes for VIN
@ 2019-02-16 23:58 Niklas Söderlund
  2019-02-16 23:58 ` [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address Niklas Söderlund
  2019-02-16 23:58 ` [PATCH 2/2] arm64: dts: r8a77990-ebisu: Enable VIN5 Niklas Söderlund
  0 siblings, 2 replies; 12+ messages in thread
From: Niklas Söderlund @ 2019-02-16 23:58 UTC (permalink / raw)
  To: Simon Horman, linux-renesas-soc; +Cc: Niklas Söderlund

Hi,

This series corrects two minor issues in the Ebisu's device tree related 
to video capture. 1/2 aligns how other Renesas device trees represent 
register addresses for the ports in the adv7482 node while 2/2 enables 
VIN5 which is usable on the SoC but was disabled.

Patches are only compile tested and verified using the 
datasheets/schematics as I have no access to boards to test them on.

Takeshi Kihara (2):
  arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  arm64: dts: r8a77990-ebisu: Enable VIN5

 arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

-- 
2.20.1


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

* [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-02-16 23:58 [PATCH 0/2] arm64: dts: r8a77990-ebisu: small fixes for VIN Niklas Söderlund
@ 2019-02-16 23:58 ` Niklas Söderlund
  2019-02-17 22:13   ` Kieran Bingham
  2019-02-16 23:58 ` [PATCH 2/2] arm64: dts: r8a77990-ebisu: Enable VIN5 Niklas Söderlund
  1 sibling, 1 reply; 12+ messages in thread
From: Niklas Söderlund @ 2019-02-16 23:58 UTC (permalink / raw)
  To: Simon Horman, linux-renesas-soc; +Cc: Takeshi Kihara, Niklas Söderlund

From: Takeshi Kihara <takeshi.kihara.df@renesas.com>

The register address used for the reg property of the adv7482 node in
other Renesas device trees are decimal not hex, change this for Ebisu to
align it with the others.

Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
[Niklas: rewrite commit message]
Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
---
 arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
index 62bdddcbbae7d9e9..23914c2b83965621 100644
--- a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
+++ b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
@@ -383,7 +383,7 @@
 		};
 
 		port@a {
-			reg = <0xa>;
+			reg = <10>;
 
 			adv7482_txa: endpoint {
 				clock-lanes = <0>;
-- 
2.20.1


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

* [PATCH 2/2] arm64: dts: r8a77990-ebisu: Enable VIN5
  2019-02-16 23:58 [PATCH 0/2] arm64: dts: r8a77990-ebisu: small fixes for VIN Niklas Söderlund
  2019-02-16 23:58 ` [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address Niklas Söderlund
@ 2019-02-16 23:58 ` Niklas Söderlund
  2019-02-17 22:05   ` Kieran Bingham
  1 sibling, 1 reply; 12+ messages in thread
From: Niklas Söderlund @ 2019-02-16 23:58 UTC (permalink / raw)
  To: Simon Horman, linux-renesas-soc; +Cc: Takeshi Kihara, Niklas Söderlund

From: Takeshi Kihara <takeshi.kihara.df@renesas.com>

Both VIN4 and VIN5 are connected to CSI40 and can be configured at
runtime to use the single video source connected to CSI40. Enable VIN5
to allow it to be used in this fashion.

Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
[Niklas: rewrite commit message]
Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
---
 arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
index 23914c2b83965621..2c4d1cbe05acad37 100644
--- a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
+++ b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
@@ -635,6 +635,10 @@
 	status = "okay";
 };
 
+&vin5 {
+	status = "okay";
+};
+
 &xhci0 {
 	pinctrl-0 = <&usb30_pins>;
 	pinctrl-names = "default";
-- 
2.20.1


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

* Re: [PATCH 2/2] arm64: dts: r8a77990-ebisu: Enable VIN5
  2019-02-16 23:58 ` [PATCH 2/2] arm64: dts: r8a77990-ebisu: Enable VIN5 Niklas Söderlund
@ 2019-02-17 22:05   ` Kieran Bingham
  2019-03-06 13:04     ` Simon Horman
  0 siblings, 1 reply; 12+ messages in thread
From: Kieran Bingham @ 2019-02-17 22:05 UTC (permalink / raw)
  To: Niklas Söderlund, Simon Horman, linux-renesas-soc; +Cc: Takeshi Kihara

Hi Niklas, Takeshi,

On 16/02/2019 23:58, Niklas Söderlund wrote:
> From: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> 
> Both VIN4 and VIN5 are connected to CSI40 and can be configured at
> runtime to use the single video source connected to CSI40. Enable VIN5
> to allow it to be used in this fashion.
> 
> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> [Niklas: rewrite commit message]
> Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>

Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>


> ---
>  arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> index 23914c2b83965621..2c4d1cbe05acad37 100644
> --- a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> +++ b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> @@ -635,6 +635,10 @@
>  	status = "okay";
>  };
>  
> +&vin5 {
> +	status = "okay";
> +};
> +
>  &xhci0 {
>  	pinctrl-0 = <&usb30_pins>;
>  	pinctrl-names = "default";
> 


-- 
Regards
--
Kieran

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

* Re: [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-02-16 23:58 ` [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address Niklas Söderlund
@ 2019-02-17 22:13   ` Kieran Bingham
  2019-02-18  9:01     ` Geert Uytterhoeven
  0 siblings, 1 reply; 12+ messages in thread
From: Kieran Bingham @ 2019-02-17 22:13 UTC (permalink / raw)
  To: Niklas Söderlund, Simon Horman, linux-renesas-soc; +Cc: Takeshi Kihara

Hi Niklas, Takeshi,

On 16/02/2019 23:58, Niklas Söderlund wrote:
> From: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> 
> The register address used for the reg property of the adv7482 node in
> other Renesas device trees are decimal not hex, change this for Ebisu to
> align it with the others.
> 
> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> [Niklas: rewrite commit message]
> Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> ---
>  arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> index 62bdddcbbae7d9e9..23914c2b83965621 100644
> --- a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> +++ b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> @@ -383,7 +383,7 @@
>  		};
>  
>  		port@a {
> -			reg = <0xa>;
> +			reg = <10>;

From the discussions on this before, we converted the port number to be hex.

I really dislike that we have port@a, but reg=<10>;

However as long as the value is written by the DTC as 'ten' and
correctly interpreted as decimal this is still correct.

I guess it doesn't hurt to have a decimal representation as that will
then match the bindings port descriptions. It's a shame this can't be
the 'port@10' for comprehension though.

My only hesitation on providing either an RB/or AB tag here is whether
perhaps we should instead convert the salvator-common to use hex so that
they match that way instead?

--
Regards

Kieran

>  
>  			adv7482_txa: endpoint {
>  				clock-lanes = <0>;
> 


-- 
Regards
--
Kieran

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

* Re: [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-02-17 22:13   ` Kieran Bingham
@ 2019-02-18  9:01     ` Geert Uytterhoeven
  2019-02-18 11:34       ` Kieran Bingham
  0 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2019-02-18  9:01 UTC (permalink / raw)
  To: Kieran Bingham
  Cc: Niklas Söderlund, Simon Horman, Linux-Renesas, Takeshi Kihara

Hi Kieran,

On Sun, Feb 17, 2019 at 11:13 PM Kieran Bingham
<kieran.bingham@ideasonboard.com> wrote:
> On 16/02/2019 23:58, Niklas Söderlund wrote:
> > From: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> >
> > The register address used for the reg property of the adv7482 node in
> > other Renesas device trees are decimal not hex, change this for Ebisu to
> > align it with the others.
> >
> > Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> > [Niklas: rewrite commit message]
> > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> > ---
> >  arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> > index 62bdddcbbae7d9e9..23914c2b83965621 100644
> > --- a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> > +++ b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> > @@ -383,7 +383,7 @@
> >               };
> >
> >               port@a {
> > -                     reg = <0xa>;
> > +                     reg = <10>;
>
> From the discussions on this before, we converted the port number to be hex.
>
> I really dislike that we have port@a, but reg=<10>;
>
> However as long as the value is written by the DTC as 'ten' and
> correctly interpreted as decimal this is still correct.
>
> I guess it doesn't hurt to have a decimal representation as that will
> then match the bindings port descriptions. It's a shame this can't be
> the 'port@10' for comprehension though.
>
> My only hesitation on providing either an RB/or AB tag here is whether
> perhaps we should instead convert the salvator-common to use hex so that
> they match that way instead?

(More rationale, which may be considered bikeshedding ;-)

I believe we tend to use decimal for small numbers, and hex for large numbers.
Exceptions are values where the meaning of the individual bits is important,
and hex is thus more suitable (e.g. rohm,ddr-backup-power = <0xf>).

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-02-18  9:01     ` Geert Uytterhoeven
@ 2019-02-18 11:34       ` Kieran Bingham
  2019-02-25 10:09         ` Simon Horman
  0 siblings, 1 reply; 12+ messages in thread
From: Kieran Bingham @ 2019-02-18 11:34 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Niklas Söderlund, Simon Horman, Linux-Renesas, Takeshi Kihara

Hi Geert,

On 18/02/2019 09:01, Geert Uytterhoeven wrote:
> Hi Kieran,
> 
> On Sun, Feb 17, 2019 at 11:13 PM Kieran Bingham
> <kieran.bingham@ideasonboard.com> wrote:
>> On 16/02/2019 23:58, Niklas Söderlund wrote:
>>> From: Takeshi Kihara <takeshi.kihara.df@renesas.com>
>>>
>>> The register address used for the reg property of the adv7482 node in
>>> other Renesas device trees are decimal not hex, change this for Ebisu to
>>> align it with the others.
>>>
>>> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
>>> [Niklas: rewrite commit message]
>>> Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
>>> ---
>>>  arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
>>> index 62bdddcbbae7d9e9..23914c2b83965621 100644
>>> --- a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
>>> +++ b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
>>> @@ -383,7 +383,7 @@
>>>               };
>>>
>>>               port@a {
>>> -                     reg = <0xa>;
>>> +                     reg = <10>;
>>
>> From the discussions on this before, we converted the port number to be hex.
>>
>> I really dislike that we have port@a, but reg=<10>;
>>
>> However as long as the value is written by the DTC as 'ten' and
>> correctly interpreted as decimal this is still correct.
>>
>> I guess it doesn't hurt to have a decimal representation as that will
>> then match the bindings port descriptions. It's a shame this can't be
>> the 'port@10' for comprehension though.
>>
>> My only hesitation on providing either an RB/or AB tag here is whether
>> perhaps we should instead convert the salvator-common to use hex so that
>> they match that way instead?
> 
> (More rationale, which may be considered bikeshedding ;-)

All input here is helpful :)


> I believe we tend to use decimal for small numbers, and hex for large numbers.
> Exceptions are values where the meaning of the individual bits is important,
> and hex is thus more suitable (e.g. rohm,ddr-backup-power = <0xf>).


I believe without the 0x prefix in the reg <> the value is taken as
decimal, so keeping decimal will still function correctly.

I think my issue only stems from the fact that the @N value is 'hex'
without the prefix which causes the difference.

I'll stop fussing over this. The value is interpreted correctly, and as
I said above - having a place where the port number is listed in decimal
helps to match to the bindings table. It's just not in the place I'd
like it to be - but I have no control over that.

So, lets get this patch in and at least unify the current users ...

Acked-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>


> Gr{oetje,eeting}s,
> 
>                         Geert
> 

-- 
Regards
--
Kieran

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

* Re: [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-02-18 11:34       ` Kieran Bingham
@ 2019-02-25 10:09         ` Simon Horman
  2019-03-06 11:47           ` Niklas Söderlund
  0 siblings, 1 reply; 12+ messages in thread
From: Simon Horman @ 2019-02-25 10:09 UTC (permalink / raw)
  To: Kieran Bingham
  Cc: Geert Uytterhoeven, Niklas Söderlund, Linux-Renesas, Takeshi Kihara

On Mon, Feb 18, 2019 at 11:34:13AM +0000, Kieran Bingham wrote:
> Hi Geert,
> 
> On 18/02/2019 09:01, Geert Uytterhoeven wrote:
> > Hi Kieran,
> > 
> > On Sun, Feb 17, 2019 at 11:13 PM Kieran Bingham
> > <kieran.bingham@ideasonboard.com> wrote:
> >> On 16/02/2019 23:58, Niklas Söderlund wrote:
> >>> From: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> >>>
> >>> The register address used for the reg property of the adv7482 node in
> >>> other Renesas device trees are decimal not hex, change this for Ebisu to
> >>> align it with the others.
> >>>
> >>> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> >>> [Niklas: rewrite commit message]
> >>> Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> >>> ---
> >>>  arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts | 2 +-
> >>>  1 file changed, 1 insertion(+), 1 deletion(-)
> >>>
> >>> diff --git a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> >>> index 62bdddcbbae7d9e9..23914c2b83965621 100644
> >>> --- a/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> >>> +++ b/arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
> >>> @@ -383,7 +383,7 @@
> >>>               };
> >>>
> >>>               port@a {
> >>> -                     reg = <0xa>;
> >>> +                     reg = <10>;
> >>
> >> From the discussions on this before, we converted the port number to be hex.
> >>
> >> I really dislike that we have port@a, but reg=<10>;
> >>
> >> However as long as the value is written by the DTC as 'ten' and
> >> correctly interpreted as decimal this is still correct.
> >>
> >> I guess it doesn't hurt to have a decimal representation as that will
> >> then match the bindings port descriptions. It's a shame this can't be
> >> the 'port@10' for comprehension though.
> >>
> >> My only hesitation on providing either an RB/or AB tag here is whether
> >> perhaps we should instead convert the salvator-common to use hex so that
> >> they match that way instead?
> > 
> > (More rationale, which may be considered bikeshedding ;-)
> 
> All input here is helpful :)
> 
> 
> > I believe we tend to use decimal for small numbers, and hex for large numbers.
> > Exceptions are values where the meaning of the individual bits is important,
> > and hex is thus more suitable (e.g. rohm,ddr-backup-power = <0xf>).
> 
> 
> I believe without the 0x prefix in the reg <> the value is taken as
> decimal, so keeping decimal will still function correctly.
> 
> I think my issue only stems from the fact that the @N value is 'hex'
> without the prefix which causes the difference.
> 
> I'll stop fussing over this. The value is interpreted correctly, and as
> I said above - having a place where the port number is listed in decimal
> helps to match to the bindings table. It's just not in the place I'd
> like it to be - but I have no control over that.
> 
> So, lets get this patch in and at least unify the current users ...
> 
> Acked-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>

Thanks, applied with the subject prefix updated to

"arm64: dts: renesas: ebisu:"

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

* Re: [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-02-25 10:09         ` Simon Horman
@ 2019-03-06 11:47           ` Niklas Söderlund
  2019-03-06 13:04             ` Simon Horman
  0 siblings, 1 reply; 12+ messages in thread
From: Niklas Söderlund @ 2019-03-06 11:47 UTC (permalink / raw)
  To: Simon Horman
  Cc: Kieran Bingham, Geert Uytterhoeven, Linux-Renesas, Takeshi Kihara

Hi Simon,

On 2019-02-25 11:09:54 +0100, Simon Horman wrote:
[snip]
> Thanks, applied with the subject prefix updated to
> 
> "arm64: dts: renesas: ebisu:"

You took patch 1/2 from this series but not 2/2. Was that intentional?

-- 
Regards,
Niklas Söderlund

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

* Re: [PATCH 2/2] arm64: dts: r8a77990-ebisu: Enable VIN5
  2019-02-17 22:05   ` Kieran Bingham
@ 2019-03-06 13:04     ` Simon Horman
  0 siblings, 0 replies; 12+ messages in thread
From: Simon Horman @ 2019-03-06 13:04 UTC (permalink / raw)
  To: Kieran Bingham; +Cc: Niklas Söderlund, linux-renesas-soc, Takeshi Kihara

On Sun, Feb 17, 2019 at 10:05:45PM +0000, Kieran Bingham wrote:
> Hi Niklas, Takeshi,
> 
> On 16/02/2019 23:58, Niklas Söderlund wrote:
> > From: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> > 
> > Both VIN4 and VIN5 are connected to CSI40 and can be configured at
> > runtime to use the single video source connected to CSI40. Enable VIN5
> > to allow it to be used in this fashion.
> > 
> > Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> > [Niklas: rewrite commit message]
> > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> 
> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>

Thanks,

applied for v5.2 with subject updated to:

  arm64: dts: renesas: ebisu: Enable VIN5

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

* Re: [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-03-06 11:47           ` Niklas Söderlund
@ 2019-03-06 13:04             ` Simon Horman
  2019-03-06 13:10               ` Niklas Söderlund
  0 siblings, 1 reply; 12+ messages in thread
From: Simon Horman @ 2019-03-06 13:04 UTC (permalink / raw)
  To: Niklas Söderlund
  Cc: Kieran Bingham, Geert Uytterhoeven, Linux-Renesas, Takeshi Kihara

On Wed, Mar 06, 2019 at 12:47:36PM +0100, Niklas Söderlund wrote:
> Hi Simon,
> 
> On 2019-02-25 11:09:54 +0100, Simon Horman wrote:
> [snip]
> > Thanks, applied with the subject prefix updated to
> > 
> > "arm64: dts: renesas: ebisu:"
> 
> You took patch 1/2 from this series but not 2/2. Was that intentional?

Thanks, that was an oversight. I now have 2/2 too.

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

* Re: [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address
  2019-03-06 13:04             ` Simon Horman
@ 2019-03-06 13:10               ` Niklas Söderlund
  0 siblings, 0 replies; 12+ messages in thread
From: Niklas Söderlund @ 2019-03-06 13:10 UTC (permalink / raw)
  To: Simon Horman
  Cc: Kieran Bingham, Geert Uytterhoeven, Linux-Renesas, Takeshi Kihara

On 2019-03-06 14:04:35 +0100, Simon Horman wrote:
> On Wed, Mar 06, 2019 at 12:47:36PM +0100, Niklas Söderlund wrote:
> > Hi Simon,
> > 
> > On 2019-02-25 11:09:54 +0100, Simon Horman wrote:
> > [snip]
> > > Thanks, applied with the subject prefix updated to
> > > 
> > > "arm64: dts: renesas: ebisu:"
> > 
> > You took patch 1/2 from this series but not 2/2. Was that intentional?
> 
> Thanks, that was an oversight. I now have 2/2 too.

Thanks!

-- 
Regards,
Niklas Söderlund

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

end of thread, other threads:[~2019-03-06 13:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-16 23:58 [PATCH 0/2] arm64: dts: r8a77990-ebisu: small fixes for VIN Niklas Söderlund
2019-02-16 23:58 ` [PATCH 1/2] arm64: dts: r8a77990-ebisu: Fix adv7482 hexadecimal register address Niklas Söderlund
2019-02-17 22:13   ` Kieran Bingham
2019-02-18  9:01     ` Geert Uytterhoeven
2019-02-18 11:34       ` Kieran Bingham
2019-02-25 10:09         ` Simon Horman
2019-03-06 11:47           ` Niklas Söderlund
2019-03-06 13:04             ` Simon Horman
2019-03-06 13:10               ` Niklas Söderlund
2019-02-16 23:58 ` [PATCH 2/2] arm64: dts: r8a77990-ebisu: Enable VIN5 Niklas Söderlund
2019-02-17 22:05   ` Kieran Bingham
2019-03-06 13:04     ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).