arch/arm64/imx9: Fix first trace
Swap board init and uart init. Reason is that trace might be used on board init. Signed-off-by: Ari Kimari <ari.kimari@tii.ae>
This commit is contained in:
parent
1dfe1f16c6
commit
6f38806a5d
1 changed files with 6 additions and 6 deletions
|
|
@ -216,12 +216,6 @@ void arm64_chip_boot(void)
|
|||
imx9_gpioirq_initialize();
|
||||
#endif
|
||||
|
||||
/* Perform board-specific device initialization. This would include
|
||||
* configuration of board specific resources such as GPIOs, LEDs, etc.
|
||||
*/
|
||||
|
||||
imx9_board_initialize();
|
||||
|
||||
#ifdef USE_EARLYSERIALINIT
|
||||
/* Perform early serial initialization if we are going to use the serial
|
||||
* driver.
|
||||
|
|
@ -229,4 +223,10 @@ void arm64_chip_boot(void)
|
|||
|
||||
arm64_earlyserialinit();
|
||||
#endif
|
||||
|
||||
/* Perform board-specific device initialization. This would include
|
||||
* configuration of board specific resources such as GPIOs, LEDs, etc.
|
||||
*/
|
||||
|
||||
imx9_board_initialize();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue