aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Kicinski <kubakici@wp.pl>2015-05-29 15:20:27 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-05-31 17:47:27 -0400
commit4117a60c8e4c8d5f9fc05578e359d09d0fdf9d07 (patch)
treeb0ae4f2e16118d02935e9de603c582641bd8c09c
parent5451bb29f725c099e7ea78262610c8c1b6caf008 (diff)
sc16is7xx: add missing compatible strings
Without matching bus-specific strings driver will not be loaded automatically. Signed-off-by: Jakub Kicinski <kubakici@wp.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/sc16is7xx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/tty/serial/sc16is7xx.c b/drivers/tty/serial/sc16is7xx.c
index 64b1b9db1299..0509be025399 100644
--- a/drivers/tty/serial/sc16is7xx.c
+++ b/drivers/tty/serial/sc16is7xx.c
@@ -1241,6 +1241,8 @@ static int sc16is7xx_spi_remove(struct spi_device *spi)
1241 1241
1242static const struct spi_device_id sc16is7xx_spi_id_table[] = { 1242static const struct spi_device_id sc16is7xx_spi_id_table[] = {
1243 { "sc16is74x", (kernel_ulong_t)&sc16is74x_devtype, }, 1243 { "sc16is74x", (kernel_ulong_t)&sc16is74x_devtype, },
1244 { "sc16is740", (kernel_ulong_t)&sc16is74x_devtype, },
1245 { "sc16is741", (kernel_ulong_t)&sc16is74x_devtype, },
1244 { "sc16is750", (kernel_ulong_t)&sc16is750_devtype, }, 1246 { "sc16is750", (kernel_ulong_t)&sc16is750_devtype, },
1245 { "sc16is752", (kernel_ulong_t)&sc16is752_devtype, }, 1247 { "sc16is752", (kernel_ulong_t)&sc16is752_devtype, },
1246 { "sc16is760", (kernel_ulong_t)&sc16is760_devtype, }, 1248 { "sc16is760", (kernel_ulong_t)&sc16is760_devtype, },
@@ -1296,6 +1298,8 @@ static int sc16is7xx_i2c_remove(struct i2c_client *client)
1296 1298
1297static const struct i2c_device_id sc16is7xx_i2c_id_table[] = { 1299static const struct i2c_device_id sc16is7xx_i2c_id_table[] = {
1298 { "sc16is74x", (kernel_ulong_t)&sc16is74x_devtype, }, 1300 { "sc16is74x", (kernel_ulong_t)&sc16is74x_devtype, },
1301 { "sc16is740", (kernel_ulong_t)&sc16is74x_devtype, },
1302 { "sc16is741", (kernel_ulong_t)&sc16is74x_devtype, },
1299 { "sc16is750", (kernel_ulong_t)&sc16is750_devtype, }, 1303 { "sc16is750", (kernel_ulong_t)&sc16is750_devtype, },
1300 { "sc16is752", (kernel_ulong_t)&sc16is752_devtype, }, 1304 { "sc16is752", (kernel_ulong_t)&sc16is752_devtype, },
1301 { "sc16is760", (kernel_ulong_t)&sc16is760_devtype, }, 1305 { "sc16is760", (kernel_ulong_t)&sc16is760_devtype, },