mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00

This reverts commit 3304197272
.
With the ability to generate this SMBIOS details autmotically the
small amount of details that this patch provided are generated
automatically so this is now obsolete so we can just drop it.
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Acked-by: Matthias Brugger <mbrugger@suse.com>
29 lines
359 B
Text
29 lines
359 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* U-Boot addition to keep baudrate set by firmware
|
|
* and also initialize before relocation.
|
|
*
|
|
* (C) Copyright 2016 Fabian Vogt <fvogt@suse.com>
|
|
*/
|
|
|
|
&uart0 {
|
|
skip-init;
|
|
bootph-all;
|
|
};
|
|
|
|
&uart1 {
|
|
skip-init;
|
|
bootph-all;
|
|
};
|
|
|
|
&gpio {
|
|
bootph-all;
|
|
};
|
|
|
|
&uart0_gpio14 {
|
|
bootph-all;
|
|
};
|
|
|
|
&uart1_gpio14 {
|
|
bootph-all;
|
|
};
|