powerpc/83xx: Fix MCU support merge issue in mpc8349emitx.dts

Just found the merge issue in 442746989d92afc125040e0f29b33602ad94da99
("powerpc/83xx: Add support for MCU microcontroller in .dts files"):
the commit adds the MCU controller node into the DMA node, which is
wrong because the MCU sits on the I2C bus. Fix this by moving the MCU
node into the I2C controller node.

The original patch[1] was OK though. ;-)

Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

authored by Anton Vorontsov and committed by Kumar Gala dafdb613 2434bbb3

+8 -8
+8 -8
arch/powerpc/boot/dts/mpc8349emitx.dts
··· 91 91 interrupts = <18 0x8>; 92 92 interrupt-parent = <&ipic>; 93 93 }; 94 + 95 + mcu_pio: mcu@a { 96 + #gpio-cells = <2>; 97 + compatible = "fsl,mc9s08qg8-mpc8349emitx", 98 + "fsl,mcu-mpc8349emitx"; 99 + reg = <0x0a>; 100 + gpio-controller; 101 + }; 94 102 }; 95 103 96 104 spi@7000 { ··· 146 138 cell-index = <3>; 147 139 interrupt-parent = <&ipic>; 148 140 interrupts = <71 8>; 149 - }; 150 - 151 - mcu_pio: mcu@a { 152 - #gpio-cells = <2>; 153 - compatible = "fsl,mc9s08qg8-mpc8349emitx", 154 - "fsl,mcu-mpc8349emitx"; 155 - reg = <0x0a>; 156 - gpio-controller; 157 141 }; 158 142 }; 159 143