[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <87egpy7tb7.fsf@free.fr>
Date: Mon, 09 Feb 2015 20:56:12 +0100
From: Robert Jarzmik <robert.jarzmik@...e.fr>
To: Sergei Shtylyov <sergei.shtylyov@...entembedded.com>
Cc: Rob Herring <robh+dt@...nel.org>, Pawel Moll <pawel.moll@....com>,
Mark Rutland <mark.rutland@....com>,
Ian Campbell <ijc+devicetree@...lion.org.uk>,
Kumar Gala <galak@...eaurora.org>,
Dmitry Eremin-Solenikov <dbaryshkov@...il.com>,
devicetree@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH v3 2/5] ARM: dts: pxa: add clocks
> + ffuart: uart@...00000 {
> + clocks = <&pxa2xx_clks CLK_FFUART>;
> + };
> +
After another thought about your "one line" node, I think this can be even
improved, so that :
- uart clocks are put into pxa2xx.dtsi instead of pxa27x.dtsi
- replace all pxa2xx_clks by clks
- let pxa27x.dtsi, pxa3xx.dtsi declare the clks label
This way we'll have :
- pxa2xx.dtsi
ffuart: uart@...00000 {
compatible = ...
...
clocks = <&clks CLK_FFUART>;
};
- pxa27x.dtsi
clks: pxa2xx_clks@...00004 {
compatible = "marvell,pxa270-clocks";
#clock-cells = <1>;
status = "okay";
};
- pxa3xx.dtsi
clks: pxa3xx_clks@...00004 {
compatible = "marvell,pxa300-clocks";
#clock-cells = <1>;
status = "okay";
};
Cheers.
--
Robert
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists