summaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorMaciej S. Szmigiero <mail@maciej.szmigiero.name>2015-08-02 23:11:52 +0200
committerLuis Henriques <luis.henriques@canonical.com>2015-09-28 10:21:40 +0100
commit8e02bc7b9eb27fcf83476a6a34c1db8d90d02848 (patch)
tree6a053546a649befb949419cc78debccb5bd5b8c2 /drivers/tty
parent3cdcb88f856cb2d76eb2997e48c01e6e81df3f6c (diff)
downloadlinux-stable-8e02bc7b9eb27fcf83476a6a34c1db8d90d02848.tar.gz
linux-stable-8e02bc7b9eb27fcf83476a6a34c1db8d90d02848.tar.bz2
linux-stable-8e02bc7b9eb27fcf83476a6a34c1db8d90d02848.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: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/8250/8250_pnp.c5
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 682a2fbe5c06..2b22cc1e57a2 100644
--- a/drivers/tty/serial/8250/8250_pnp.c
+++ b/drivers/tty/serial/8250/8250_pnp.c
@@ -364,6 +364,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 }
};