Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ACPI: Add BayTrail SoC GPIO and LPSS ACPI IDs

This adds the new ACPI ID (INT33FC) for the BayTrail GPIO
banks as seen on a BayTrail M System-On-Chip platform. This
ACPI ID is used by the BayTrail GPIO (pinctrl) driver to
manage the Low Power Subsystem (LPSS).

Signed-off-by: Paul Drews <paul.drews@intel.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Paul Drews and committed by
Rafael J. Wysocki
f6308b36 6ce4eac1

+2
+1
drivers/acpi/acpi_lpss.c
··· 162 162 { "80860F14", (unsigned long)&byt_sdio_dev_desc }, 163 163 { "80860F41", (unsigned long)&byt_i2c_dev_desc }, 164 164 { "INT33B2", }, 165 + { "INT33FC", }, 165 166 166 167 { "INT3430", (unsigned long)&lpt_dev_desc }, 167 168 { "INT3431", (unsigned long)&lpt_dev_desc },
+1
drivers/pinctrl/pinctrl-baytrail.c
··· 512 512 513 513 static const struct acpi_device_id byt_gpio_acpi_match[] = { 514 514 { "INT33B2", 0 }, 515 + { "INT33FC", 0 }, 515 516 { } 516 517 }; 517 518 MODULE_DEVICE_TABLE(acpi, byt_gpio_acpi_match);