diff options
author | Michael Brunner <BrunnerMichael@t-online.de> | 2013-08-09 11:33:43 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-08-14 13:53:19 -0400 |
commit | c1d33b1b188ccf70e5c9526fa293cbc783245eee (patch) | |
tree | 77cb70a5c42d3ec078e2dc59f449cffe55973396 /drivers/mfd/kempld-core.c | |
parent | b81eec09a484c588ead035003ce7555ca8a9963a (diff) |
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.
Acked-by: Kevin Strasser <strassek@engr.orst.edu>
Signed-off-by: Michael Brunner <michael.brunner@kontron.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/kempld-core.c')
-rw-r--r-- | drivers/mfd/kempld-core.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/mfd/kempld-core.c b/drivers/mfd/kempld-core.c index ab36e6ebbf8b..d3e23278d299 100644 --- a/drivers/mfd/kempld-core.c +++ b/drivers/mfd/kempld-core.c | |||
@@ -413,6 +413,15 @@ static struct platform_driver kempld_driver = { | |||
413 | 413 | ||
414 | static struct dmi_system_id __initdata kempld_dmi_table[] = { | 414 | static struct dmi_system_id __initdata kempld_dmi_table[] = { |
415 | { | 415 | { |
416 | .ident = "BHL6", | ||
417 | .matches = { | ||
418 | DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"), | ||
419 | DMI_MATCH(DMI_BOARD_NAME, "COMe-bHL6"), | ||
420 | }, | ||
421 | .driver_data = (void *)&kempld_platform_data_generic, | ||
422 | .callback = kempld_create_platform_device, | ||
423 | }, | ||
424 | { | ||
416 | .ident = "CCR2", | 425 | .ident = "CCR2", |
417 | .matches = { | 426 | .matches = { |
418 | DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"), | 427 | DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"), |
@@ -596,6 +605,15 @@ static struct dmi_system_id __initdata kempld_dmi_table[] = { | |||
596 | .driver_data = (void *)&kempld_platform_data_generic, | 605 | .driver_data = (void *)&kempld_platform_data_generic, |
597 | .callback = kempld_create_platform_device, | 606 | .callback = kempld_create_platform_device, |
598 | }, | 607 | }, |
608 | { | ||
609 | .ident = "UTH6", | ||
610 | .matches = { | ||
611 | DMI_MATCH(DMI_BOARD_VENDOR, "Kontron"), | ||
612 | DMI_MATCH(DMI_BOARD_NAME, "COMe-cTH6"), | ||
613 | }, | ||
614 | .driver_data = (void *)&kempld_platform_data_generic, | ||
615 | .callback = kempld_create_platform_device, | ||
616 | }, | ||
599 | {} | 617 | {} |
600 | }; | 618 | }; |
601 | MODULE_DEVICE_TABLE(dmi, kempld_dmi_table); | 619 | MODULE_DEVICE_TABLE(dmi, kempld_dmi_table); |