diff mbox series

[2/2] i2c: i801: Force no IRQ for further Dell Latitudes

Message ID 20230514103634.235917-3-mail@mariushoch.de
State Under Review
Delegated to: Wolfram Sang
Headers show
Series i2c: i801: Force no IRQ for Dell Latitude E7450 | expand

Commit Message

Marius Hoch May 14, 2023, 10:36 a.m. UTC
Per the referred bug reports, there are further
Dell Latitude devices affected by the same bug,
so also handle these.

Signed-off-by: Marius Hoch <mail@mariushoch.de>
---
 drivers/i2c/busses/i2c-i801.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
diff mbox series

Patch

diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index 5fd2ac585160..2e13fd04a6ab 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -1635,6 +1635,20 @@  static const struct dmi_system_id dmi_force_no_irq[] = {
 			DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E7450"),
 		},
 	},
+	/* Per https://bugzilla.redhat.com/show_bug.cgi?id=1415950 */
+	{
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E5450"),
+		},
+	},
+	/* Per https://bugzilla.kernel.org/show_bug.cgi?id=194141 */
+	{
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E5550"),
+		},
+	},
 	{} /* Terminating entry */
 };