linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards
@ 2017-01-10 17:38 Javier Martinez Canillas
  2017-01-10 17:38 ` [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node Javier Martinez Canillas
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Javier Martinez Canillas @ 2017-01-10 17:38 UTC (permalink / raw)
  To: linux-kernel
  Cc: Andi Shyti, Chanwoo Choi, Javier Martinez Canillas, devicetree,
	Kukjin Kim, Catalin Marinas, linux-samsung-soc, Rob Herring,
	Will Deacon, Mark Rutland, Krzysztof Kozlowski, linux-arm-kernel

Hello Krzysztof,

This trivial series contains fixes for DTC warnings caused by mismatches
between unit names and reg properties in device tree nodes.

The patches shouldn't cause a functional change but have been just build
tested. I compared the generated DTB though to make sure that only these
nodes changed.

Best regards,
Javier

Changes since v1:
  - Fix subject line since I forgot the "exynos" prefix.


Javier Martinez Canillas (3):
  arm64: dts: exynos: Add missing unit name to Exynos7 SoC node
  arm64: dts: exynos: Add missing unit name to Exynos5433 SoC node
  arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes

 arch/arm64/boot/dts/exynos/exynos5433.dtsi | 8 ++++----
 arch/arm64/boot/dts/exynos/exynos7.dtsi    | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

-- 
2.7.4

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

* [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node
  2017-01-10 17:38 [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Javier Martinez Canillas
@ 2017-01-10 17:38 ` Javier Martinez Canillas
  2017-01-10 18:47   ` Krzysztof Kozlowski
  2017-01-10 17:38 ` [PATCH v2 2/3] arm64: dts: exynos: Add missing unit name to Exynos5433 " Javier Martinez Canillas
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Javier Martinez Canillas @ 2017-01-10 17:38 UTC (permalink / raw)
  To: linux-kernel
  Cc: Andi Shyti, Chanwoo Choi, Javier Martinez Canillas, devicetree,
	Kukjin Kim, Catalin Marinas, linux-samsung-soc, Rob Herring,
	Will Deacon, Mark Rutland, Krzysztof Kozlowski, linux-arm-kernel

This patch fixes the following DTC warning about a mismatch
between a device node reg property and its unit name:

Node /soc has a reg or ranges property, but no unit name

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---

 arch/arm64/boot/dts/exynos/exynos7.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/exynos/exynos7.dtsi b/arch/arm64/boot/dts/exynos/exynos7.dtsi
index 80aa60e38237..0d2fedc6ac2f 100644
--- a/arch/arm64/boot/dts/exynos/exynos7.dtsi
+++ b/arch/arm64/boot/dts/exynos/exynos7.dtsi
@@ -69,7 +69,7 @@
 		method = "smc";
 	};
 
-	soc: soc {
+	soc: soc@0 {
 		compatible = "simple-bus";
 		#address-cells = <1>;
 		#size-cells = <1>;
-- 
2.7.4

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

* [PATCH v2 2/3] arm64: dts: exynos: Add missing unit name to Exynos5433 SoC node
  2017-01-10 17:38 [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Javier Martinez Canillas
  2017-01-10 17:38 ` [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node Javier Martinez Canillas
@ 2017-01-10 17:38 ` Javier Martinez Canillas
  2017-01-10 17:38 ` [PATCH v2 3/3] arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes Javier Martinez Canillas
  2017-01-10 18:42 ` [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Krzysztof Kozlowski
  3 siblings, 0 replies; 10+ messages in thread
From: Javier Martinez Canillas @ 2017-01-10 17:38 UTC (permalink / raw)
  To: linux-kernel
  Cc: Andi Shyti, Chanwoo Choi, Javier Martinez Canillas, devicetree,
	Kukjin Kim, Catalin Marinas, linux-samsung-soc, Rob Herring,
	Will Deacon, Mark Rutland, Krzysztof Kozlowski, linux-arm-kernel

This patch fixes the following DTC warning about a mismatch
between a device node reg property and its unit name:

Node /soc has a reg or ranges property, but no unit name

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
---

 arch/arm64/boot/dts/exynos/exynos5433.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/exynos/exynos5433.dtsi b/arch/arm64/boot/dts/exynos/exynos5433.dtsi
index 68f764e5851c..3695ddaf2e04 100644
--- a/arch/arm64/boot/dts/exynos/exynos5433.dtsi
+++ b/arch/arm64/boot/dts/exynos/exynos5433.dtsi
@@ -241,7 +241,7 @@
 		mask = <0x1>;
 	};
 
-	soc: soc {
+	soc: soc@0 {
 		compatible = "simple-bus";
 		#address-cells = <1>;
 		#size-cells = <1>;
-- 
2.7.4

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

* [PATCH v2 3/3] arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes
  2017-01-10 17:38 [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Javier Martinez Canillas
  2017-01-10 17:38 ` [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node Javier Martinez Canillas
  2017-01-10 17:38 ` [PATCH v2 2/3] arm64: dts: exynos: Add missing unit name to Exynos5433 " Javier Martinez Canillas
@ 2017-01-10 17:38 ` Javier Martinez Canillas
  2017-01-10 18:51   ` Krzysztof Kozlowski
  2017-01-10 18:42 ` [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Krzysztof Kozlowski
  3 siblings, 1 reply; 10+ messages in thread
From: Javier Martinez Canillas @ 2017-01-10 17:38 UTC (permalink / raw)
  To: linux-kernel
  Cc: Andi Shyti, Chanwoo Choi, Javier Martinez Canillas, devicetree,
	Kukjin Kim, Catalin Marinas, linux-samsung-soc, Rob Herring,
	Will Deacon, Mark Rutland, Krzysztof Kozlowski, linux-arm-kernel

The "samsung,exynos5433-mipi-video-phy" and "samsung,exynos5250-dwusb3"
DT bindings don't specify a reg property for these nodes, so having a
unit name leads to the following DTC warnings:

Node /soc/video-phy@105c0710 has a unit name, but no reg property
Node /soc/usb@15400000 has a unit name, but no reg property
Node /soc/usb@15a00000 has a unit name, but no reg property

Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>

---

 arch/arm64/boot/dts/exynos/exynos5433.dtsi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm64/boot/dts/exynos/exynos5433.dtsi b/arch/arm64/boot/dts/exynos/exynos5433.dtsi
index 3695ddaf2e04..17e5dafd392c 100644
--- a/arch/arm64/boot/dts/exynos/exynos5433.dtsi
+++ b/arch/arm64/boot/dts/exynos/exynos5433.dtsi
@@ -706,7 +706,7 @@
 			interrupts = <GIC_PPI 9 0xf04>;
 		};
 
-		mipi_phy: video-phy@105c0710 {
+		mipi_phy: video-phy {
 			compatible = "samsung,exynos5433-mipi-video-phy";
 			#phy-cells = <1>;
 			samsung,pmu-syscon = <&pmu_system_controller>;
@@ -1285,7 +1285,7 @@
 			status = "disabled";
 		};
 
-		usbdrd30: usb@15400000  {
+		usbdrd30: usb-0  {
 			compatible = "samsung,exynos5250-dwusb3";
 			clocks = <&cmu_fsys CLK_ACLK_USBDRD30>,
 				<&cmu_fsys CLK_SCLK_USBDRD30>;
@@ -1332,7 +1332,7 @@
 			status = "disabled";
 		};
 
-		usbhost30: usb@15a00000 {
+		usbhost30: usb-1 {
 			compatible = "samsung,exynos5250-dwusb3";
 			clocks = <&cmu_fsys CLK_ACLK_USBHOST30>,
 				<&cmu_fsys CLK_SCLK_USBHOST30>;
-- 
2.7.4

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

* Re: [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards
  2017-01-10 17:38 [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Javier Martinez Canillas
                   ` (2 preceding siblings ...)
  2017-01-10 17:38 ` [PATCH v2 3/3] arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes Javier Martinez Canillas
@ 2017-01-10 18:42 ` Krzysztof Kozlowski
  3 siblings, 0 replies; 10+ messages in thread
From: Krzysztof Kozlowski @ 2017-01-10 18:42 UTC (permalink / raw)
  To: Javier Martinez Canillas
  Cc: linux-kernel, Andi Shyti, Chanwoo Choi, devicetree, Kukjin Kim,
	Catalin Marinas, linux-samsung-soc, Rob Herring, Will Deacon,
	Mark Rutland, Krzysztof Kozlowski, linux-arm-kernel

On Tue, Jan 10, 2017 at 02:38:29PM -0300, Javier Martinez Canillas wrote:
> Hello Krzysztof,
> 
> This trivial series contains fixes for DTC warnings caused by mismatches
> between unit names and reg properties in device tree nodes.
> 
> The patches shouldn't cause a functional change but have been just build
> tested. I compared the generated DTB though to make sure that only these
> nodes changed.
> 
> Best regards,
> Javier
> 
> Changes since v1:
>   - Fix subject line since I forgot the "exynos" prefix.

Thanks :)

Best regards,
Krzysztof

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

* Re: [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node
  2017-01-10 17:38 ` [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node Javier Martinez Canillas
@ 2017-01-10 18:47   ` Krzysztof Kozlowski
  2017-01-10 19:55     ` Javier Martinez Canillas
  0 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2017-01-10 18:47 UTC (permalink / raw)
  To: Javier Martinez Canillas
  Cc: linux-kernel, Andi Shyti, Chanwoo Choi, devicetree, Kukjin Kim,
	Catalin Marinas, linux-samsung-soc, Rob Herring, Will Deacon,
	Mark Rutland, Krzysztof Kozlowski, linux-arm-kernel

On Tue, Jan 10, 2017 at 02:38:30PM -0300, Javier Martinez Canillas wrote:
> This patch fixes the following DTC warning about a mismatch
> between a device node reg property and its unit name:
> 
> Node /soc has a reg or ranges property, but no unit name
> 
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> ---
> 
>  arch/arm64/boot/dts/exynos/exynos7.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/exynos/exynos7.dtsi b/arch/arm64/boot/dts/exynos/exynos7.dtsi
> index 80aa60e38237..0d2fedc6ac2f 100644
> --- a/arch/arm64/boot/dts/exynos/exynos7.dtsi
> +++ b/arch/arm64/boot/dts/exynos/exynos7.dtsi
> @@ -69,7 +69,7 @@
>  		method = "smc";
>  	};
>  
> -	soc: soc {
> +	soc: soc@0 {

This looks unnatural, like a fix just to silence the DTC. Mostly de do
not enumerate soc node, although there are few exceptions.

I would prefer ignore the warning... however I am happy to hear other opinions.

Best regards,
Krzysztof

>  		compatible = "simple-bus";
>  		#address-cells = <1>;
>  		#size-cells = <1>;
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 3/3] arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes
  2017-01-10 17:38 ` [PATCH v2 3/3] arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes Javier Martinez Canillas
@ 2017-01-10 18:51   ` Krzysztof Kozlowski
  2017-01-10 19:03     ` Javier Martinez Canillas
  0 siblings, 1 reply; 10+ messages in thread
From: Krzysztof Kozlowski @ 2017-01-10 18:51 UTC (permalink / raw)
  To: Javier Martinez Canillas
  Cc: linux-kernel, Andi Shyti, Chanwoo Choi, devicetree, Kukjin Kim,
	Catalin Marinas, linux-samsung-soc, Rob Herring, Will Deacon,
	Mark Rutland, Krzysztof Kozlowski, linux-arm-kernel

On Tue, Jan 10, 2017 at 02:38:32PM -0300, Javier Martinez Canillas wrote:
> The "samsung,exynos5433-mipi-video-phy" and "samsung,exynos5250-dwusb3"
> DT bindings don't specify a reg property for these nodes, so having a
> unit name leads to the following DTC warnings:
> 
> Node /soc/video-phy@105c0710 has a unit name, but no reg property
> Node /soc/usb@15400000 has a unit name, but no reg property
> Node /soc/usb@15a00000 has a unit name, but no reg property
> 
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> 
> ---
> 
>  arch/arm64/boot/dts/exynos/exynos5433.dtsi | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/exynos/exynos5433.dtsi b/arch/arm64/boot/dts/exynos/exynos5433.dtsi
> index 3695ddaf2e04..17e5dafd392c 100644
> --- a/arch/arm64/boot/dts/exynos/exynos5433.dtsi
> +++ b/arch/arm64/boot/dts/exynos/exynos5433.dtsi
> @@ -706,7 +706,7 @@
>  			interrupts = <GIC_PPI 9 0xf04>;
>  		};
>  
> -		mipi_phy: video-phy@105c0710 {
> +		mipi_phy: video-phy {
>  			compatible = "samsung,exynos5433-mipi-video-phy";
>  			#phy-cells = <1>;
>  			samsung,pmu-syscon = <&pmu_system_controller>;
> @@ -1285,7 +1285,7 @@
>  			status = "disabled";
>  		};
>  
> -		usbdrd30: usb@15400000  {
> +		usbdrd30: usb-0  {

How about "usbdrd" instead of "usb-0"? It would be still quite a generic
description of a class.

>  			compatible = "samsung,exynos5250-dwusb3";
>  			clocks = <&cmu_fsys CLK_ACLK_USBDRD30>,
>  				<&cmu_fsys CLK_SCLK_USBDRD30>;
> @@ -1332,7 +1332,7 @@
>  			status = "disabled";
>  		};
>  
> -		usbhost30: usb@15a00000 {
> +		usbhost30: usb-1 {

usbhost?

Best regards,
Krzysztof

>  			compatible = "samsung,exynos5250-dwusb3";
>  			clocks = <&cmu_fsys CLK_ACLK_USBHOST30>,
>  				<&cmu_fsys CLK_SCLK_USBHOST30>;
> -- 
> 2.7.4
> 

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

* Re: [PATCH v2 3/3] arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes
  2017-01-10 18:51   ` Krzysztof Kozlowski
@ 2017-01-10 19:03     ` Javier Martinez Canillas
  0 siblings, 0 replies; 10+ messages in thread
From: Javier Martinez Canillas @ 2017-01-10 19:03 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: linux-kernel, Andi Shyti, Chanwoo Choi, devicetree, Kukjin Kim,
	Catalin Marinas, linux-samsung-soc, Rob Herring, Will Deacon,
	Mark Rutland, linux-arm-kernel

Hello Krzysztof,

On 01/10/2017 03:51 PM, Krzysztof Kozlowski wrote:

[snip]

>>  
>> -		usbdrd30: usb@15400000  {
>> +		usbdrd30: usb-0  {
> 
> How about "usbdrd" instead of "usb-0"? It would be still quite a generic
> description of a class.
> 
>>  			compatible = "samsung,exynos5250-dwusb3";
>>  			clocks = <&cmu_fsys CLK_ACLK_USBDRD30>,
>>  				<&cmu_fsys CLK_SCLK_USBDRD30>;
>> @@ -1332,7 +1332,7 @@
>>  			status = "disabled";
>>  		};
>>  
>> -		usbhost30: usb@15a00000 {
>> +		usbhost30: usb-1 {
> 
> usbhost?
> 

Indeed, these sounds better so I'll change for them.

Best regards,
-- 
Javier Martinez Canillas
Open Source Group
Samsung Research America

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

* Re: [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node
  2017-01-10 18:47   ` Krzysztof Kozlowski
@ 2017-01-10 19:55     ` Javier Martinez Canillas
  2017-02-20 14:00       ` Javier Martinez Canillas
  0 siblings, 1 reply; 10+ messages in thread
From: Javier Martinez Canillas @ 2017-01-10 19:55 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: linux-kernel, Andi Shyti, Chanwoo Choi, devicetree, Kukjin Kim,
	Catalin Marinas, linux-samsung-soc, Rob Herring, Will Deacon,
	Mark Rutland, linux-arm-kernel

Hello Krzysztof,

On 01/10/2017 03:47 PM, Krzysztof Kozlowski wrote:
> On Tue, Jan 10, 2017 at 02:38:30PM -0300, Javier Martinez Canillas wrote:
>> This patch fixes the following DTC warning about a mismatch
>> between a device node reg property and its unit name:
>>
>> Node /soc has a reg or ranges property, but no unit name
>>
>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>> ---
>>
>>  arch/arm64/boot/dts/exynos/exynos7.dtsi | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/arch/arm64/boot/dts/exynos/exynos7.dtsi b/arch/arm64/boot/dts/exynos/exynos7.dtsi
>> index 80aa60e38237..0d2fedc6ac2f 100644
>> --- a/arch/arm64/boot/dts/exynos/exynos7.dtsi
>> +++ b/arch/arm64/boot/dts/exynos/exynos7.dtsi
>> @@ -69,7 +69,7 @@
>>  		method = "smc";
>>  	};
>>  
>> -	soc: soc {
>> +	soc: soc@0 {
> 
> This looks unnatural, like a fix just to silence the DTC. Mostly de do
> not enumerate soc node, although there are few exceptions.
>

Yes, but OTOH arm32 Exynos SoCs just have an empty "ranges" property in their
soc device node (parent and child address space is the same, no translation)
so DTC doesn't complain about the unit address in those.

But others SoCs DTSI with a non-empty ranges property have an unit name in
their soc nodes, i.e for arm64 and arm32:

arch/arm64/boot/dts/marvell/berlin4ct.dtsi

arch/arm/boot/dts/da850.dtsi
 
> I would prefer ignore the warning... however I am happy to hear other opinions.
>

If is wrong/unnatural to have addresses for soc nodes then I think DTC should
be patched to ignore these (like it will be the case for the OPP nodes AFAIU).

> Best regards,
> Krzysztof
> 

Best regards,
-- 
Javier Martinez Canillas
Open Source Group
Samsung Research America

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

* Re: [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node
  2017-01-10 19:55     ` Javier Martinez Canillas
@ 2017-02-20 14:00       ` Javier Martinez Canillas
  0 siblings, 0 replies; 10+ messages in thread
From: Javier Martinez Canillas @ 2017-02-20 14:00 UTC (permalink / raw)
  To: Rob Herring
  Cc: Krzysztof Kozlowski, linux-kernel, Andi Shyti, Chanwoo Choi,
	devicetree, Kukjin Kim, Catalin Marinas, linux-samsung-soc,
	Will Deacon, Mark Rutland, linux-arm-kernel

Hello Rob,

On 01/10/2017 04:55 PM, Javier Martinez Canillas wrote:
> Hello Krzysztof,
> 
> On 01/10/2017 03:47 PM, Krzysztof Kozlowski wrote:
>> On Tue, Jan 10, 2017 at 02:38:30PM -0300, Javier Martinez Canillas wrote:
>>> This patch fixes the following DTC warning about a mismatch
>>> between a device node reg property and its unit name:
>>>
>>> Node /soc has a reg or ranges property, but no unit name
>>>
>>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>>> ---
>>>
>>>  arch/arm64/boot/dts/exynos/exynos7.dtsi | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/arch/arm64/boot/dts/exynos/exynos7.dtsi b/arch/arm64/boot/dts/exynos/exynos7.dtsi
>>> index 80aa60e38237..0d2fedc6ac2f 100644
>>> --- a/arch/arm64/boot/dts/exynos/exynos7.dtsi
>>> +++ b/arch/arm64/boot/dts/exynos/exynos7.dtsi
>>> @@ -69,7 +69,7 @@
>>>  		method = "smc";
>>>  	};
>>>  
>>> -	soc: soc {
>>> +	soc: soc@0 {
>>
>> This looks unnatural, like a fix just to silence the DTC. Mostly de do
>> not enumerate soc node, although there are few exceptions.
>>
> 
> Yes, but OTOH arm32 Exynos SoCs just have an empty "ranges" property in their
> soc device node (parent and child address space is the same, no translation)
> so DTC doesn't complain about the unit address in those.
> 
> But others SoCs DTSI with a non-empty ranges property have an unit name in
> their soc nodes, i.e for arm64 and arm32:
> 
> arch/arm64/boot/dts/marvell/berlin4ct.dtsi
> 
> arch/arm/boot/dts/da850.dtsi
>  
>> I would prefer ignore the warning... however I am happy to hear other opinions.
>>
> 
> If is wrong/unnatural to have addresses for soc nodes then I think DTC should
> be patched to ignore these (like it will be the case for the OPP nodes AFAIU).
> 

Any comments about this?

>> Best regards,
>> Krzysztof
>>
> 
> Best regards,
> 

Best regards,
-- 
Javier Martinez Canillas
Open Source Group
Samsung Research America

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

end of thread, other threads:[~2017-02-20 14:01 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-10 17:38 [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Javier Martinez Canillas
2017-01-10 17:38 ` [PATCH v2 1/3] arm64: dts: exynos: Add missing unit name to Exynos7 SoC node Javier Martinez Canillas
2017-01-10 18:47   ` Krzysztof Kozlowski
2017-01-10 19:55     ` Javier Martinez Canillas
2017-02-20 14:00       ` Javier Martinez Canillas
2017-01-10 17:38 ` [PATCH v2 2/3] arm64: dts: exynos: Add missing unit name to Exynos5433 " Javier Martinez Canillas
2017-01-10 17:38 ` [PATCH v2 3/3] arm64: dts: exynos: Remove unneeded unit names in Exynos5433 nodes Javier Martinez Canillas
2017-01-10 18:51   ` Krzysztof Kozlowski
2017-01-10 19:03     ` Javier Martinez Canillas
2017-01-10 18:42 ` [PATCH v2 0/3] arm64: dts: exynos: Fix DTC warnings for Exynos boards Krzysztof Kozlowski

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