Re: [PATCH v2] Fixes: tty: serial: earlycon dependency

2020-08-18 Thread Tong Zhang
Thanks Greg and Jiri for your suggestion! I made another attempt to fix those problems. Hope it will work this time. Thank you! On Tue, Aug 18, 2020 at 7:19 AM Greg KH wrote: > > On Mon, Aug 17, 2020 at 02:54:19PM -0400, Tong Zhang wrote: > > parse_options() in drivers/tty/serial/earlycon.c calls

Re: [PATCH v2] Fixes: tty: serial: earlycon dependency

2020-08-18 Thread Greg KH
On Mon, Aug 17, 2020 at 02:54:19PM -0400, Tong Zhang wrote: > parse_options() in drivers/tty/serial/earlycon.c calls uart_parse_earlycon > in drivers/tty/serial/serial_core.c therefore selecting SERIAL_EARLYCON > should automatically select SERIAL_CORE, otherwise will result in symbol > not found e

Re: [PATCH v2] Fixes: tty: serial: earlycon dependency

2020-08-17 Thread Jiri Slaby
On 17. 08. 20, 20:54, Tong Zhang wrote: > parse_options() in drivers/tty/serial/earlycon.c calls uart_parse_earlycon > in drivers/tty/serial/serial_core.c therefore selecting SERIAL_EARLYCON > should automatically select SERIAL_CORE, otherwise will result in symbol > not found error during linking

[PATCH v2] Fixes: tty: serial: earlycon dependency

2020-08-17 Thread Tong Zhang
parse_options() in drivers/tty/serial/earlycon.c calls uart_parse_earlycon in drivers/tty/serial/serial_core.c therefore selecting SERIAL_EARLYCON should automatically select SERIAL_CORE, otherwise will result in symbol not found error during linking if SERIAL_CORE is not configured as builtin Sig

[PATCH v2] Fixes: tty: serial: earlycon dependency

2020-08-17 Thread Tong Zhang
parse_options() in drivers/tty/serial/earlycon.c calls uart_parse_earlycon in drivers/tty/serial/serial_core.c therefore selecting SERIAL_EARLYCON should automatically select SERIAL_CORE, otherwise will result in symbol not found error during linking if SERIAL_CORE is not configured as builtin Sig