Commit 5456afb4 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] add m68knommu serial console support into tty_io.c

This patch initializes the m68knommu specific serial drivers (68328serial.c,
mcfserial.c and 68360serial.c) when used as consoles.
parent d2a14c07
......@@ -155,6 +155,9 @@ extern void tub3270_init(void);
extern void uart_console_init(void);
extern void sgi_serial_console_init(void);
extern void sci_console_init(void);
extern void m68328_console_init(void);
extern void mcfrs_console_init(void);
extern void rs_360_init(void);
extern void tx3912_console_init(void);
extern void tx3912_rs_init(void);
extern void hvc_console_init(void);
......@@ -2280,6 +2283,15 @@ void __init console_init(void)
#ifdef CONFIG_ARC_CONSOLE
arc_console_init();
#endif
#ifdef CONFIG_SERIAL_68328
m68328_console_init();
#endif
#ifdef CONFIG_SERIAL_COLDFIRE
mcfrs_console_init();
#endif
#ifdef CONFIG_SERIAL_68360
rs_360_init();
#endif
#ifdef CONFIG_SERIAL_TX3912_CONSOLE
tx3912_console_init();
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment