diff options
author | Maciej S. Szmigiero <mail@maciej.szmigiero.name> | 2015-08-02 23:11:52 +0200 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-09-30 10:59:54 +0200 |
commit | 01e34fe8efcb116223840e7ceaa42a6dca9bcf98 (patch) | |
tree | 45d264624d56f68d4b49f7328d94fe0b71edd5be | |
parent | fc188009fa7230a2b555f6cd528218ca9272359c (diff) | |
download | lwn-01e34fe8efcb116223840e7ceaa42a6dca9bcf98.tar.gz lwn-01e34fe8efcb116223840e7ceaa42a6dca9bcf98.zip |
serial: 8250: don't bind to SMSC IrCC IR port
commit ffa34de03bcfbfa88d8352942bc238bb48e94e2d upstream.
SMSC IrCC SIR/FIR port should not be bound to by
(legacy) serial driver so its own driver (smsc-ircc2)
can bind to it.
Signed-off-by: Maciej Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | drivers/tty/serial/8250/8250_pnp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/tty/serial/8250/8250_pnp.c b/drivers/tty/serial/8250/8250_pnp.c index 35d9ab95c5cb..91b14202b90b 100644 --- a/drivers/tty/serial/8250/8250_pnp.c +++ b/drivers/tty/serial/8250/8250_pnp.c @@ -365,6 +365,11 @@ static const struct pnp_device_id pnp_dev_table[] = { /* Winbond CIR port, should not be probed. We should keep track of it to prevent the legacy serial driver from probing it */ { "WEC1022", CIR_PORT }, + /* + * SMSC IrCC SIR/FIR port, should not be probed by serial driver + * as well so its own driver can bind to it. + */ + { "SMCF010", CIR_PORT }, { "", 0 } }; |