Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1391677

[PATCH 1/1] gpio: xgene: Enable ACPI support for X-Gene GFC GPIO driver

From Duc Dang <dhdang@apm.com>
Newsgroups linux.kernel
Subject [PATCH 1/1] gpio: xgene: Enable ACPI support for X-Gene GFC GPIO driver
Date 2016-04-30 23:00 +0200
Message-ID <rtK9z-5Lq-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


This patch enables ACPI support for X-Gene GFC GPIO driver.

Signed-off-by: Duc Dang <dhdang@apm.com>
---
 drivers/gpio/gpio-xgene.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/gpio/gpio-xgene.c b/drivers/gpio/gpio-xgene.c
index 0dc9161..c00c408 100644
--- a/drivers/gpio/gpio-xgene.c
+++ b/drivers/gpio/gpio-xgene.c
@@ -17,6 +17,7 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <linux/acpi.h>
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/init.h>
@@ -218,10 +219,18 @@ static const struct of_device_id xgene_gpio_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, xgene_gpio_of_match);
 
+#ifdef CONFIG_ACPI
+static const struct acpi_device_id xgene_gpio_acpi_match[] = {
+	{ "APMC0D14", 0 },
+	{ },
+};
+#endif
+
 static struct platform_driver xgene_gpio_driver = {
 	.driver = {
 		.name = "xgene-gpio",
 		.of_match_table = xgene_gpio_of_match,
+		.acpi_match_table = ACPI_PTR(xgene_gpio_acpi_match),
 		.pm     = XGENE_GPIO_PM_OPS,
 	},
 	.probe = xgene_gpio_probe,
-- 
1.9.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 1/1] gpio: xgene: Enable ACPI support for X-Gene GFC GPIO driver Duc Dang <dhdang@apm.com> - 2016-04-30 23:00 +0200
  Re: [PATCH 1/1] gpio: xgene: Enable ACPI support for X-Gene GFC GPIO driver Linus Walleij <linus.walleij@linaro.org> - 2016-05-01 10:30 +0200
    Re: [PATCH 1/1] gpio: xgene: Enable ACPI support for X-Gene GFC GPIO driver Duc Dang <dhdang@apm.com> - 2016-05-03 03:10 +0200

csiph-web