Re: [PATCH v5 27/46] x86: Ensure SPL banner is only shown once

2023-07-16 Thread Bin Meng
On Sun, Jul 16, 2023 at 11:40 AM Simon Glass wrote: > > Print the banner in SPL init only if the spl_board_init() function isn't > enabled. The spl_board_init() function is in the same file, but is called > later, by board_init_r(). > > This avoids printing two banners, which causes tests to fail.

[PATCH v5 27/46] x86: Ensure SPL banner is only shown once

2023-07-15 Thread Simon Glass
Print the banner in SPL init only if the spl_board_init() function isn't enabled. The spl_board_init() function is in the same file, but is called later, by board_init_r(). This avoids printing two banners, which causes tests to fail. Signed-off-by: Simon Glass --- Changes in v5: - Split out ba