[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130809173343.7843a13a@charybdis>
Date: Fri, 9 Aug 2013 17:33:43 +0200
From: "Michael Brunner" <BrunnerMichael@...nline.de>
To: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Cc: Guenter Roeck <linux@...ck-us.net>,
Kevin Strasser <strassek@...r.orst.edu>,
Darren Hart <dvhart@...ux.intel.com>,
Samuel Ortiz <sameo@...ux.intel.com>,
Michael Brunner <Michael.Brunner@...tron.com>,
Chris Healy <chealy@...co-us.com>,
Lee Jones <lee.jones@...aro.org>
Subject: [PATCH] mfd: Add support for COMe-bHL6 and COMe-cTH6 to Kontron PLD
driver
This patch adds DMI system IDs for the new Kontron modules COMe-bHL6 and
COMe-cTH6 to the Kontron PLD driver.
Signed-off-by: Michael Brunner <michael.brunner@...tron.com>
---
drivers/mfd/kempld-core.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/drivers/mfd/kempld-core.c b/drivers/mfd/kempld-core.c
index 686a456..ee28e76 100644
--- a/drivers/mfd/kempld-core.c
+++ b/drivers/mfd/kempld-core.c
@@ -413,6 +413,15 @@ static struct platform_driver kempld_driver = {
static struct dmi_system_id __initdata kempld_dmi_table[] = {
{
+ .ident = "BHL6",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
+ DMI_MATCH(DMI_BOARD_NAME, "COMe-bHL6"),
+ },
+ .driver_data = (void *)&kempld_platform_data_generic,
+ .callback = kempld_create_platform_device,
+ },
+ {
.ident = "CCR2",
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
@@ -596,6 +605,15 @@ static struct dmi_system_id __initdata kempld_dmi_table[] = {
.driver_data = (void *)&kempld_platform_data_generic,
.callback = kempld_create_platform_device,
},
+ {
+ .ident = "UTH6",
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"),
+ DMI_MATCH(DMI_BOARD_NAME, "COMe-cTH6"),
+ },
+ .driver_data = (void *)&kempld_platform_data_generic,
+ .callback = kempld_create_platform_device,
+ },
{}
};
MODULE_DEVICE_TABLE(dmi, kempld_dmi_table);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists