devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Boris BREZILLON <b.brezillon.dev@gmail.com>
To: Boris BREZILLON <brezillonboris@gmail.com>,
	Fabio Estevam <festevam@gmail.com>,
	Sylwester Nawrocki <sylvester.nawrocki@gmail.com>,
	Gregory Clement <gregory.clement@free-electrons.com>
Cc: devicetree@vger.kernel.org, Kevin Hilman <khilman@linaro.org>,
	Boris BREZILLON <b.brezillon.dev@gmail.com>,
	Nicolas Ferre <nicolas.ferre@atmel.com>,
	linux-kernel@vger.kernel.org,
	Russell King <linux@arm.linux.org.uk>,
	Sascha Hauer <kernel@pengutronix.de>,
	Mike Turquette <mturquette@linaro.org>,
	Shawn Guo <shawn.guo@linaro.org>,
	Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] ARM: imx6/dt: add ccm dependency upon ckil, ckih1 and osc clocks
Date: Thu, 27 Mar 2014 09:39:04 +0100	[thread overview]
Message-ID: <5333E3A8.3050405@gmail.com> (raw)
In-Reply-To: <1395907913-23808-1-git-send-email-b.brezillon.dev@gmail.com>

Le 27/03/2014 09:11, Boris BREZILLON a écrit :
> Signed-off-by: Boris BREZILLON <b.brezillon.dev@gmail.com>
> ---
>   arch/arm/boot/dts/imx6qdl.dtsi |    4 ++++
>   1 file changed, 4 insertions(+)
>
> diff --git a/arch/arm/boot/dts/imx6qdl.dtsi b/arch/arm/boot/dts/imx6qdl.dtsi
> index cfc85be..060e94c 100644
> --- a/arch/arm/boot/dts/imx6qdl.dtsi
> +++ b/arch/arm/boot/dts/imx6qdl.dtsi
> @@ -62,16 +62,19 @@
>   
>   		ckil {
Oops.
You'll have to change this line into the line below in order to be able 
to reference this clk.

                           ckil: ckil {
>   			compatible = "fsl,imx-ckil", "fixed-clock";
> +			#clock-cells = <0>;
>   			clock-frequency = <32768>;
>   		};
>   
>   		ckih1 {
ditto
>   			compatible = "fsl,imx-ckih1", "fixed-clock";
> +			#clock-cells = <0>;
>   			clock-frequency = <0>;
>   		};
>   
>   		osc {
ditto
>   			compatible = "fsl,imx-osc", "fixed-clock";
> +			#clock-cells = <0>;
>   			clock-frequency = <24000000>;
>   		};
>   	};
> @@ -489,6 +492,7 @@
>   				interrupts = <0 87 IRQ_TYPE_LEVEL_HIGH>,
>   					     <0 88 IRQ_TYPE_LEVEL_HIGH>;
>   				#clock-cells = <1>;
> +				clocks = <&ckil &ckih1 &osc>;
>   			};
>   
>   			anatop: anatop@020c8000 {

  reply	other threads:[~2014-03-27  8:39 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-26 18:22 [PATCH] clk: register fixed-clock only if #clock-cells property is present Sylwester Nawrocki
     [not found] ` <1395858127-18730-1-git-send-email-s.nawrocki-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-03-26 18:33   ` Fabio Estevam
2014-03-26 19:57     ` Sylwester Nawrocki
     [not found]       ` <53333145.4080903-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-03-26 20:14         ` Fabio Estevam
     [not found]           ` <CAOMZO5AEry8sJW_+0aJS8ush+sYPPWk9LRU0b8RUUGa-hO_G1A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-03-26 20:25             ` Gregory CLEMENT
2014-03-26 20:34               ` Fabio Estevam
2014-03-27  7:58           ` Boris BREZILLON
     [not found]             ` <5333DA13.2080505-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-03-27  8:11               ` [PATCH] ARM: imx6/dt: add ccm dependency upon ckil, ckih1 and osc clocks Boris BREZILLON
2014-03-27  8:39                 ` Boris BREZILLON [this message]
     [not found]                 ` <1395907913-23808-1-git-send-email-b.brezillon.dev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-03-27 11:19                   ` Fabio Estevam
2014-03-27 13:27                     ` Boris BREZILLON
2014-03-27 10:01               ` [PATCH] clk: register fixed-clock only if #clock-cells property is present Sylwester Nawrocki
     [not found]                 ` <5333F704.7020504-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-03-27 11:14                   ` Boris BREZILLON
2014-03-27 10:55   ` Sylwester Nawrocki

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=5333E3A8.3050405@gmail.com \
    --to=b.brezillon.dev@gmail.com \
    --cc=brezillonboris@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=gregory.clement@free-electrons.com \
    --cc=kernel@pengutronix.de \
    --cc=khilman@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mturquette@linaro.org \
    --cc=nicolas.ferre@atmel.com \
    --cc=plagnioj@jcrosoft.com \
    --cc=shawn.guo@linaro.org \
    --cc=sylvester.nawrocki@gmail.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 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).