lkml.org 
[lkml]   [2015]   [Feb]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH v3 2/5] ARM: dts: pxa: add clocks
Date
> +		ffuart: uart@40100000 {
> + 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@40100000 {
compatible = ...
...
clocks = <&clks CLK_FFUART>;
};
- pxa27x.dtsi
clks: pxa2xx_clks@41300004 {
compatible = "marvell,pxa270-clocks";
#clock-cells = <1>;
status = "okay";
};
- pxa3xx.dtsi
clks: pxa3xx_clks@41300004 {
compatible = "marvell,pxa300-clocks";
#clock-cells = <1>;
status = "okay";
};

Cheers.

--
Robert


\
 
 \ /
  Last update: 2015-02-09 21:41    [W:0.055 / U:1.048 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site