diff options
author | David S. Miller <davem@davemloft.net> | 2009-11-24 14:03:34 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-24 14:03:34 -0800 |
commit | 4e3533d05b6e5e66d1cda27f6671251c99c62894 (patch) | |
tree | 0eed98a48ff54e7fbdeb51227ed95f1b4774e056 /drivers/serial/suncore.h | |
parent | 8301d386afc55c877bafe2c6c7dc75a96ddd2838 (diff) |
serial: suncore: Add 'ignore_line' argument to sunserial_console_match().
This tells the logic to ignore the line match when deciding whether the
device is the OpenFirmware specified console device or not.
This is going to be used in the SU driver for rsc-console detection.
There is probably a better way to handle this, but this is the least
intrusive solution for now which we can validate won't break any other
cases.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/serial/suncore.h')
-rw-r--r-- | drivers/serial/suncore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/suncore.h b/drivers/serial/suncore.h index 042668aa602..cab95b3fbdd 100644 --- a/drivers/serial/suncore.h +++ b/drivers/serial/suncore.h @@ -26,7 +26,7 @@ extern int sunserial_register_minors(struct uart_driver *, int); extern void sunserial_unregister_minors(struct uart_driver *, int); extern int sunserial_console_match(struct console *, struct device_node *, - struct uart_driver *, int); + struct uart_driver *, int, bool); extern void sunserial_console_termios(struct console *); #endif /* !(_SERIAL_SUN_H) */ |