]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
Fixes for 4.4
authorSasha Levin <sashal@kernel.org>
Fri, 17 Jul 2020 12:56:01 +0000 (08:56 -0400)
committerSasha Levin <sashal@kernel.org>
Fri, 17 Jul 2020 12:56:01 +0000 (08:56 -0400)
Signed-off-by: Sasha Levin <sashal@kernel.org>
queue-4.4/i2c-eg20t-load-module-automatically-if-id-matches.patch [new file with mode: 0644]
queue-4.4/series

diff --git a/queue-4.4/i2c-eg20t-load-module-automatically-if-id-matches.patch b/queue-4.4/i2c-eg20t-load-module-automatically-if-id-matches.patch
new file mode 100644 (file)
index 0000000..178777a
--- /dev/null
@@ -0,0 +1,35 @@
+From 923665fa641ab99f0a28ef298b6d51487e22d114 Mon Sep 17 00:00:00 2001
+From: Sasha Levin <sashal@kernel.org>
+Date: Thu, 2 Jul 2020 13:15:27 +0300
+Subject: i2c: eg20t: Load module automatically if ID matches
+
+From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+
+[ Upstream commit 5f90786b31fb7d1e199a8999d46c4e3aea672e11 ]
+
+The driver can't be loaded automatically because it misses
+module alias to be provided. Add corresponding MODULE_DEVICE_TABLE()
+call to the driver.
+
+Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+Signed-off-by: Wolfram Sang <wsa@kernel.org>
+Signed-off-by: Sasha Levin <sashal@kernel.org>
+---
+ drivers/i2c/busses/i2c-eg20t.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/drivers/i2c/busses/i2c-eg20t.c b/drivers/i2c/busses/i2c-eg20t.c
+index eef3aa6007f10..ffd8f9772096c 100644
+--- a/drivers/i2c/busses/i2c-eg20t.c
++++ b/drivers/i2c/busses/i2c-eg20t.c
+@@ -189,6 +189,7 @@ static const struct pci_device_id pch_pcidev_id[] = {
+       { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7831_I2C), 1, },
+       {0,}
+ };
++MODULE_DEVICE_TABLE(pci, pch_pcidev_id);
+ static irqreturn_t pch_i2c_handler(int irq, void *pData);
+-- 
+2.25.1
+
index 4efbf4cc4e82984c5ec1aa70e72193d86fb902c5..b0e4110dfb97a061403d9222c135cc83d8d0969a 100644 (file)
@@ -26,3 +26,4 @@ tcp-make-sure-listeners-don-t-initialize-congestion-control-state.patch
 tcp-md5-add-missing-memory-barriers-in-tcp_md5_do_add-tcp_md5_hash_key.patch
 tcp-md5-refine-tcp_md5_do_add-tcp_md5_hash_key-barriers.patch
 tcp-md5-allow-changing-md5-keys-in-all-socket-states.patch
+i2c-eg20t-load-module-automatically-if-id-matches.patch