We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1fcbaa commit 71a4856Copy full SHA for 71a4856
drivers/acpi/resource.c
@@ -516,6 +516,17 @@ static const struct dmi_system_id maingear_laptop[] = {
516
{ }
517
};
518
519
+static const struct dmi_system_id lg_laptop[] = {
520
+ {
521
+ .ident = "LG Electronics 17U70P",
522
+ .matches = {
523
+ DMI_MATCH(DMI_SYS_VENDOR, "LG Electronics"),
524
+ DMI_MATCH(DMI_BOARD_NAME, "17U70P"),
525
+ },
526
527
+ { }
528
+};
529
+
530
struct irq_override_cmp {
531
const struct dmi_system_id *system;
532
unsigned char irq;
@@ -532,6 +543,7 @@ static const struct irq_override_cmp override_table[] = {
543
{ lenovo_laptop, 10, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW, 0, true },
533
544
{ tongfang_gm_rg, 1, ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_LOW, 1, true },
534
545
{ maingear_laptop, 1, ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_LOW, 1, true },
546
+ { lg_laptop, 1, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW, 0, false },
535
547
536
548
537
549
static bool acpi_dev_irq_override(u32 gsi, u8 triggering, u8 polarity,
0 commit comments