diff options
author | Keith Hui <buurin@gmail.com> | 2020-02-02 00:26:59 -0500 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2020-04-18 18:51:59 +0000 |
commit | 5d8ad8598bc5043bde2329aa5be561f6a1e308cd (patch) | |
tree | b109ad393dab6ee54e9be22b1f71ddc6d4466c36 /src/northbridge | |
parent | b7c11c6953285f64603a6e1a115b2fdc1505d832 (diff) |
asus/p2b*: Move serial init into mainboard bootblock
With this bootblock messages are transmitted over serial too.
TEST=Serial messages transmitted normally on asus/p2b-ls.
Change-Id: I6f3ee68e7c76a8c6db6d75956e6a7fb75ef83850
Signed-off-by: Keith Hui <buurin@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38670
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/intel/i440bx/romstage.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/northbridge/intel/i440bx/romstage.c b/src/northbridge/intel/i440bx/romstage.c index 1dee03a984..bdcfdc9b85 100644 --- a/src/northbridge/intel/i440bx/romstage.c +++ b/src/northbridge/intel/i440bx/romstage.c @@ -14,15 +14,11 @@ #include <arch/romstage.h> #include <cbmem.h> -#include <console/console.h> #include <southbridge/intel/i82371eb/i82371eb.h> #include <northbridge/intel/i440bx/raminit.h> void mainboard_romstage_entry(void) { - mainboard_enable_serial(); - console_init(); - i82371eb_early_init(); sdram_initialize(); |