
With DM_SERIAL in place, there is no need to setup the UART pins in the board code. The UART pins are setup via devicetree, thanks to DM. Remove the unneeded code. Signed-off-by: Fabio Estevam <festevam@denx.de>
32 lines
299 B
Plaintext
32 lines
299 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "imx6qdl-u-boot.dtsi"
|
|
|
|
/ {
|
|
wdt-reboot {
|
|
compatible = "wdt-reboot";
|
|
wdt = <&wdog1>;
|
|
bootph-pre-ram;
|
|
};
|
|
};
|
|
|
|
&aips2 {
|
|
bootph-all;
|
|
};
|
|
|
|
&pinctrl_uart2 {
|
|
bootph-all;
|
|
};
|
|
|
|
&soc {
|
|
bootph-all;
|
|
};
|
|
|
|
&uart2 {
|
|
bootph-all;
|
|
};
|
|
|
|
&wdog1 {
|
|
bootph-pre-ram;
|
|
};
|