Commit 2ee881b7 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Greg Kroah-Hartman

serial: pxa: fix build with !SERIAL_PXA_CONSOLE

When CONFIG_SERIAL_PXA_CONSOLE is disabled, the serial_pxa_get_poll_char
and serial_pxa_put_poll_char functions are not defined, and we can't
reference them.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9da433c0
...@@ -778,7 +778,7 @@ static struct uart_ops serial_pxa_pops = { ...@@ -778,7 +778,7 @@ static struct uart_ops serial_pxa_pops = {
.request_port = serial_pxa_request_port, .request_port = serial_pxa_request_port,
.config_port = serial_pxa_config_port, .config_port = serial_pxa_config_port,
.verify_port = serial_pxa_verify_port, .verify_port = serial_pxa_verify_port,
#ifdef CONFIG_CONSOLE_POLL #if defined(CONFIG_CONSOLE_POLL) && defined(CONFIG_SERIAL_PXA_CONSOLE)
.poll_get_char = serial_pxa_get_poll_char, .poll_get_char = serial_pxa_get_poll_char,
.poll_put_char = serial_pxa_put_poll_char, .poll_put_char = serial_pxa_put_poll_char,
#endif #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