Message ID | 1390320812-25100-2-git-send-email-grinberg@compulab.co.il (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Igor, On Tue, Jan 21, 2014 at 06:13:29PM +0200, Igor Grinberg wrote: > Move the iomuxc definition before the devices definitions > (e.g. gpmi, fec). The nodes are sorted alphabetically. Please keep them sorted. Sascha
Hi Sascha, On 01/21/14 22:42, Sascha Hauer wrote: > Hi Igor, > > On Tue, Jan 21, 2014 at 06:13:29PM +0200, Igor Grinberg wrote: >> Move the iomuxc definition before the devices definitions >> (e.g. gpmi, fec). > > The nodes are sorted alphabetically. Please keep them sorted. Hmmm.. I missed that point... Thanks! Will fix this up and resend.
diff --git a/arch/arm/boot/dts/imx6q-cm-fx6.dts b/arch/arm/boot/dts/imx6q-cm-fx6.dts index 1a8ee79..94cc6b5 100644 --- a/arch/arm/boot/dts/imx6q-cm-fx6.dts +++ b/arch/arm/boot/dts/imx6q-cm-fx6.dts @@ -31,19 +31,8 @@ linux,default-trigger = "heartbeat"; }; }; -}; -&fec { - pinctrl-names = "default"; - pinctrl-0 = <&pinctrl_enet>; - phy-mode = "rgmii"; - status = "okay"; -}; -&gpmi { - pinctrl-names = "default"; - pinctrl-0 = <&pinctrl_gpmi_nand>; - status = "okay"; }; &iomuxc { @@ -62,6 +51,19 @@ }; }; +&fec { + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_enet>; + phy-mode = "rgmii"; + status = "okay"; +}; + +&gpmi { + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_gpmi_nand>; + status = "okay"; +}; + &uart4 { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_uart4>;
Move the iomuxc definition before the devices definitions (e.g. gpmi, fec). Signed-off-by: Igor Grinberg <grinberg@compulab.co.il> --- arch/arm/boot/dts/imx6q-cm-fx6.dts | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-)