linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: b.brezillon.dev@gmail.com (Boris BREZILLON)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] dt-bindings: clock: Move at91.h to dt-bindigs/clock
Date: Fri, 07 Mar 2014 16:24:04 +0100	[thread overview]
Message-ID: <5319E494.3090805@gmail.com> (raw)
In-Reply-To: <1394085884-13081-2-git-send-email-tushar.behera@linaro.org>

Le 06/03/2014 07:04, Tushar Behera a ?crit :
> Most of the clock related dt-binding header files are located in
> dt-bindings/clock folder. It would be good to keep all the similar
> header files at a single location.

It seems I chose the wrong place when I decided to put at91 macros in 
this directory :-)

>
> Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Acked-by: Boris BREZILLON <b.brezillon.dev@gmail.com>
> CC: Rob Landley <rob@landley.net>
> CC: Andrew Victor <linux@maxim.org.za>
> CC: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
> ---
>   .../devicetree/bindings/clock/at91-clock.txt       |    2 +-
>   arch/arm/boot/dts/sama5d3.dtsi                     |    2 +-
>   arch/arm/boot/dts/sama5d3_mci2.dtsi                |    2 +-
>   arch/arm/boot/dts/sama5d3_tcb1.dtsi                |    2 +-
>   arch/arm/boot/dts/sama5d3_uart.dtsi                |    2 +-
>   include/dt-bindings/{clk => clock}/at91.h          |    0
>   6 files changed, 5 insertions(+), 5 deletions(-)
>   rename include/dt-bindings/{clk => clock}/at91.h (100%)
>
> diff --git a/Documentation/devicetree/bindings/clock/at91-clock.txt b/Documentation/devicetree/bindings/clock/at91-clock.txt
> index cd5e239..6794cdc 100644
> --- a/Documentation/devicetree/bindings/clock/at91-clock.txt
> +++ b/Documentation/devicetree/bindings/clock/at91-clock.txt
> @@ -62,7 +62,7 @@ Required properties for PMC node:
>   - interrupt-controller : tell that the PMC is an interrupt controller.
>   - #interrupt-cells : must be set to 1. The first cell encodes the interrupt id,
>   	and reflect the bit position in the PMC_ER/DR/SR registers.
> -	You can use the dt macros defined in dt-bindings/clk/at91.h.
> +	You can use the dt macros defined in dt-bindings/clock/at91.h.
>   	0 (AT91_PMC_MOSCS) -> main oscillator ready
>   	1 (AT91_PMC_LOCKA) -> PLL A ready
>   	2 (AT91_PMC_LOCKB) -> PLL B ready
> diff --git a/arch/arm/boot/dts/sama5d3.dtsi b/arch/arm/boot/dts/sama5d3.dtsi
> index 3d5faf8..8c977b5 100644
> --- a/arch/arm/boot/dts/sama5d3.dtsi
> +++ b/arch/arm/boot/dts/sama5d3.dtsi
> @@ -13,7 +13,7 @@
>   #include <dt-bindings/pinctrl/at91.h>
>   #include <dt-bindings/interrupt-controller/irq.h>
>   #include <dt-bindings/gpio/gpio.h>
> -#include <dt-bindings/clk/at91.h>
> +#include <dt-bindings/clock/at91.h>
>   
>   / {
>   	model = "Atmel SAMA5D3 family SoC";
> diff --git a/arch/arm/boot/dts/sama5d3_mci2.dtsi b/arch/arm/boot/dts/sama5d3_mci2.dtsi
> index b029fe7..1b02208 100644
> --- a/arch/arm/boot/dts/sama5d3_mci2.dtsi
> +++ b/arch/arm/boot/dts/sama5d3_mci2.dtsi
> @@ -9,7 +9,7 @@
>   
>   #include <dt-bindings/pinctrl/at91.h>
>   #include <dt-bindings/interrupt-controller/irq.h>
> -#include <dt-bindings/clk/at91.h>
> +#include <dt-bindings/clock/at91.h>
>   
>   / {
>   	ahb {
> diff --git a/arch/arm/boot/dts/sama5d3_tcb1.dtsi b/arch/arm/boot/dts/sama5d3_tcb1.dtsi
> index 382b044..0284845 100644
> --- a/arch/arm/boot/dts/sama5d3_tcb1.dtsi
> +++ b/arch/arm/boot/dts/sama5d3_tcb1.dtsi
> @@ -9,7 +9,7 @@
>   
>   #include <dt-bindings/pinctrl/at91.h>
>   #include <dt-bindings/interrupt-controller/irq.h>
> -#include <dt-bindings/clk/at91.h>
> +#include <dt-bindings/clock/at91.h>
>   
>   / {
>   	aliases {
> diff --git a/arch/arm/boot/dts/sama5d3_uart.dtsi b/arch/arm/boot/dts/sama5d3_uart.dtsi
> index a9fa75e..7a8d4c6 100644
> --- a/arch/arm/boot/dts/sama5d3_uart.dtsi
> +++ b/arch/arm/boot/dts/sama5d3_uart.dtsi
> @@ -9,7 +9,7 @@
>   
>   #include <dt-bindings/pinctrl/at91.h>
>   #include <dt-bindings/interrupt-controller/irq.h>
> -#include <dt-bindings/clk/at91.h>
> +#include <dt-bindings/clock/at91.h>
>   
>   / {
>   	aliases {
> diff --git a/include/dt-bindings/clk/at91.h b/include/dt-bindings/clock/at91.h
> similarity index 100%
> rename from include/dt-bindings/clk/at91.h
> rename to include/dt-bindings/clock/at91.h

  reply	other threads:[~2014-03-07 15:24 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-06  6:04 [PATCH 0/2] Move header files from dt-bindings/clk to dt-bindings/clock Tushar Behera
2014-03-06  6:04 ` [PATCH 1/2] dt-bindings: clock: Move at91.h to dt-bindigs/clock Tushar Behera
2014-03-07 15:24   ` Boris BREZILLON [this message]
2014-03-10 11:05   ` Nicolas Ferre
2014-04-18 15:53   ` Nicolas Ferre
2014-03-06  6:04 ` [PATCH 2/2] dt-bindings: clock: Move exynos-audss-clk.h to dt-bindings/clock Tushar Behera
2014-03-06  6:34   ` Sachin Kamat
2014-03-06  8:17     ` Tushar Behera
2014-03-10  0:20   ` Tomasz Figa
2014-03-17 22:20     ` Kukjin Kim
2014-03-18 14:32       ` Tomasz Figa
2014-03-20 19:32         ` Kukjin Kim

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=5319E494.3090805@gmail.com \
    --to=b.brezillon.dev@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.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).