diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-02-28 10:10:06 +0200 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-03-10 08:17:00 +0800 |
commit | ab83e5c1a27461ea57b184fc4bdac4d8d79deb91 (patch) | |
tree | d2ed5a66cda84cab7bd98099f28a4bdc3af89f0e /arch/x86 | |
parent | edf18a83f8dc993279947cfc7faaba7dedf1ad82 (diff) | |
download | u-boot-ab83e5c1a27461ea57b184fc4bdac4d8d79deb91.tar.gz |
x86: edison: Use proper number of serial interface
The console is actually serial #2. When we would like to enable other ports,
this would be not okay to mess up with the ordering.
Thus, fix the number of default console interface to be 2.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/dts/edison.dts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/dts/edison.dts b/arch/x86/dts/edison.dts index ca8dfb4287..c3a7ae467b 100644 --- a/arch/x86/dts/edison.dts +++ b/arch/x86/dts/edison.dts @@ -17,11 +17,11 @@ compatible = "intel,edison"; aliases { - serial0 = &serial0; + serial2 = &serial2; }; chosen { - stdout-path = &serial0; + stdout-path = &serial2; }; cpus { @@ -53,7 +53,7 @@ 0x01000000 0x0 0x2000 0x2000 0 0xe000>; }; - serial0: serial@ff010180 { + serial2: serial@ff010180 { compatible = "intel,mid-uart"; reg = <0xff010180 0x100>; reg-shift = <0>; |