mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
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>
This commit is contained in:
parent
edf18a83f8
commit
ab83e5c1a2
1 changed files with 3 additions and 3 deletions
|
@ -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>;
|
||||
|
|
Loading…
Reference in a new issue