mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
d34c671deb
Commit b00adbe0
("ARM: sunxi: Rename uart nodes to serial") changed the
node names in the DTSI, changes that were not accordingly made to the
Mini X-Plus device tree. This breakage slipped through because it was
not properly declared in the Makefile.
Fix both issues.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
33 lines
723 B
Plaintext
33 lines
723 B
Plaintext
/*
|
|
* Copyright 2012 Maxime Ripard
|
|
*
|
|
* Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
*
|
|
* The code contained herein is licensed under the GNU General Public
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
* Version 2 or later at the following locations:
|
|
*
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/include/ "sun4i-a10.dtsi"
|
|
|
|
/ {
|
|
model = "PineRiver Mini X-Plus";
|
|
compatible = "pineriver,mini-xplus", "allwinner,sun4i-a10";
|
|
|
|
chosen {
|
|
bootargs = "earlyprintk console=ttyS0,115200";
|
|
};
|
|
|
|
soc@01c20000 {
|
|
uart0: serial@01c28000 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&uart0_pins_a>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|