devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Santosh Shilimkar <santosh.shilimkar@ti.com>
To: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
Cc: olof@lixom.net, robh+dt@kernel.org, pawel.moll@arm.com,
	mark.rutland@arm.com, ijc+devicetree@hellion.org.uk,
	galak@codeaurora.org, grygorii.strashko@ti.com,
	linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org,
	devicetree@vger.kernel.org
Subject: Re: [PATCH] ARM: dts: keystone: use common "ti,keystone" compatible instead of -evm
Date: Thu, 20 Mar 2014 16:58:34 -0400	[thread overview]
Message-ID: <532B567A.5060508@ti.com> (raw)
In-Reply-To: <1395148354-22412-1-git-send-email-ivan.khoronzhuk@ti.com>

On Tuesday 18 March 2014 09:12 AM, Ivan Khoronzhuk wrote:
> As suggested by Olof Johansson at
> http://www.spinics.net/lists/arm-kernel/msg314009.html.
> It be better just keeping a "ti,keystone" top-level compatible and
> just using that to probe. If so we don't have to touch the file
> for new boards in the future.
> 
> So use common "ti,keystone" compatible in keystone.c for all boards.
> 
> Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
> Cc: Olof Johansson <olof@lixom.net>
> 
> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
> ---
> 
> Based on linux-next/master
> 
Applying it to for_3.15/fixes

>  Documentation/devicetree/bindings/arm/keystone/keystone.txt | 6 +++---
>  arch/arm/boot/dts/k2e-evm.dts                               | 2 +-
>  arch/arm/boot/dts/k2hk-evm.dts                              | 2 +-
>  arch/arm/boot/dts/k2l-evm.dts                               | 2 +-
>  arch/arm/mach-keystone/keystone.c                           | 5 +----
>  5 files changed, 7 insertions(+), 10 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/arm/keystone/keystone.txt b/Documentation/devicetree/bindings/arm/keystone/keystone.txt
> index ad16e7a..59d7a46 100644
> --- a/Documentation/devicetree/bindings/arm/keystone/keystone.txt
> +++ b/Documentation/devicetree/bindings/arm/keystone/keystone.txt
> @@ -11,10 +11,10 @@ Required properties:
>  
>  Boards:
>  -  Keystone 2 Hawking/Kepler EVM
> -   compatible = "ti,k2hk-evm"
> +   compatible = "ti,k2hk-evm","ti,keystone"
>  
>  -  Keystone 2 Lamarr EVM
> -   compatible = "ti,k2l-evm"
> +   compatible = "ti,k2l-evm","ti,keystone"
>  
>  -  Keystone 2 Edison EVM
> -   compatible = "ti,k2e-evm"
> +   compatible = "ti,k2e-evm","ti,keystone"
> diff --git a/arch/arm/boot/dts/k2e-evm.dts b/arch/arm/boot/dts/k2e-evm.dts
> index bb8faeb..74b3b63 100644
> --- a/arch/arm/boot/dts/k2e-evm.dts
> +++ b/arch/arm/boot/dts/k2e-evm.dts
> @@ -13,7 +13,7 @@
>  #include "k2e.dtsi"
>  
>  / {
> -	compatible =  "ti,k2e-evm";
> +	compatible =  "ti,k2e-evm","ti,keystone";
>  	model = "Texas Instruments Keystone 2 Edison EVM";
>  
>  	soc {
> diff --git a/arch/arm/boot/dts/k2hk-evm.dts b/arch/arm/boot/dts/k2hk-evm.dts
> index 1a1335b..f2a6658 100644
> --- a/arch/arm/boot/dts/k2hk-evm.dts
> +++ b/arch/arm/boot/dts/k2hk-evm.dts
> @@ -13,7 +13,7 @@
>  #include "k2hk.dtsi"
>  
>  / {
> -	compatible =  "ti,k2hk-evm";
> +	compatible =  "ti,k2hk-evm","ti,keystone";
>  	model = "Texas Instruments Keystone 2 Kepler/Hawking EVM";
>  
>  	soc {
> diff --git a/arch/arm/boot/dts/k2l-evm.dts b/arch/arm/boot/dts/k2l-evm.dts
> index ebf316a..50a7013 100644
> --- a/arch/arm/boot/dts/k2l-evm.dts
> +++ b/arch/arm/boot/dts/k2l-evm.dts
> @@ -13,7 +13,7 @@
>  #include "k2l.dtsi"
>  
>  / {
> -	compatible =  "ti,k2l-evm";
> +	compatible =  "ti,k2l-evm","ti,keystone";
>  	model = "Texas Instruments Keystone 2 Lamarr EVM";
>  
>  	soc {
> diff --git a/arch/arm/mach-keystone/keystone.c b/arch/arm/mach-keystone/keystone.c
> index aa0d212..e0b9e1b 100644
> --- a/arch/arm/mach-keystone/keystone.c
> +++ b/arch/arm/mach-keystone/keystone.c
> @@ -46,10 +46,7 @@ static void __init keystone_init(void)
>  }
>  
>  static const char *keystone_match[] __initconst = {
> -	"ti,keystone-evm",
> -	"ti,k2hk-evm",
> -	"ti,k2l-evm",
> -	"ti,k2e-evm",
> +	"ti,keystone",
>  	NULL,
>  };
>  
> 


      reply	other threads:[~2014-03-20 20:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-18 13:12 [PATCH] ARM: dts: keystone: use common "ti,keystone" compatible instead of -evm Ivan Khoronzhuk
2014-03-20 20:58 ` Santosh Shilimkar [this message]

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=532B567A.5060508@ti.com \
    --to=santosh.shilimkar@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=galak@codeaurora.org \
    --cc=grygorii.strashko@ti.com \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=ivan.khoronzhuk@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=olof@lixom.net \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    /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 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).