mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
serial: mpc8xx: Move serial registration from serial_initialize()
Move the registration of serial_smc and serial_scc ports from default serial_initialize() into CPU specific function called from serial_initialize(). This slims down the serial_initialize() call to a bare tracker of all possible serial port registration routines in U-Boot. The exports of both serial_scc_device and serial_smc_device can not yet be removed as they are still used in default_serial_console() calls. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Marek Vasut <marek.vasut@gmail.com> Cc: Tom Rini <trini@ti.com> Cc: Anatolij Gustschin <agust@denx.de> Cc: Stefan Roese <sr@denx.de> Cc: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
2a333aeb8f
commit
f0eb1f61b0
2 changed files with 14 additions and 8 deletions
|
@ -681,6 +681,17 @@ __weak struct serial_device *default_serial_console(void)
|
|||
#endif
|
||||
}
|
||||
|
||||
void mpc8xx_serial_initialize(void)
|
||||
{
|
||||
#if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
|
||||
serial_register(&serial_smc_device);
|
||||
#endif
|
||||
#if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) || \
|
||||
defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
|
||||
serial_register(&serial_scc_device);
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef CONFIG_MODEM_SUPPORT
|
||||
void disable_putc(void)
|
||||
{
|
||||
|
|
|
@ -40,6 +40,8 @@ static void serial_null(void)
|
|||
void name(void) \
|
||||
__attribute__((weak, alias("serial_null")));
|
||||
|
||||
serial_initfunc(mpc8xx_serial_initialize);
|
||||
|
||||
void serial_register(struct serial_device *dev)
|
||||
{
|
||||
#ifdef CONFIG_NEEDS_MANUAL_RELOC
|
||||
|
@ -57,14 +59,7 @@ void serial_register(struct serial_device *dev)
|
|||
|
||||
void serial_initialize(void)
|
||||
{
|
||||
#if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
|
||||
serial_register(&serial_smc_device);
|
||||
#endif
|
||||
#if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) || \
|
||||
defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
|
||||
serial_register(&serial_scc_device);
|
||||
#endif
|
||||
|
||||
mpc8xx_serial_initialize();
|
||||
#if defined(CONFIG_SYS_NS16550_SERIAL)
|
||||
#if defined(CONFIG_SYS_NS16550_COM1)
|
||||
serial_register(&eserial1_device);
|
||||
|
|
Loading…
Reference in a new issue