123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- From f95eb6b146bc6107b082c8d600ac5ae51c05054e Mon Sep 17 00:00:00 2001
- From: Su Bao Cheng <baocheng.su@siemens.com>
- Date: Fri, 12 Oct 2018 15:05:07 +0200
- Subject: [PATCH 08/32] mfd: intel_quark_i2c_gpio: Adjust IOT2000 matching
- Since there are more IOT2040 variants with identical hardware but
- different asset tags, the asset tag matching should be adjusted to
- support them.
- For the board name "SIMATIC IOT2000", currently there are 2 types of
- hardware, IOT2020 and IOT2040. Both are identical regarding the
- intel_quark_i2c_gpio. In the future there will be no other devices with
- the "SIMATIC IOT2000" DMI board name but different hardware. So remove
- the asset tag matching from this driver.
- Signed-off-by: Su Bao Cheng <baocheng.su@siemens.com>
- Reviewed-by: Jan Kiszka <jan.kiszka@siemens.com>
- ---
- drivers/mfd/intel_quark_i2c_gpio.c | 10 ----------
- 1 file changed, 10 deletions(-)
- diff --git a/drivers/mfd/intel_quark_i2c_gpio.c b/drivers/mfd/intel_quark_i2c_gpio.c
- index 1c09604978d3..ad70a058bea8 100644
- --- a/drivers/mfd/intel_quark_i2c_gpio.c
- +++ b/drivers/mfd/intel_quark_i2c_gpio.c
- @@ -76,16 +76,6 @@ static const struct dmi_system_id dmi_platform_info[] = {
- {
- .matches = {
- DMI_EXACT_MATCH(DMI_BOARD_NAME, "SIMATIC IOT2000"),
- - DMI_EXACT_MATCH(DMI_BOARD_ASSET_TAG,
- - "6ES7647-0AA00-0YA2"),
- - },
- - .driver_data = (void *)400000,
- - },
- - {
- - .matches = {
- - DMI_EXACT_MATCH(DMI_BOARD_NAME, "SIMATIC IOT2000"),
- - DMI_EXACT_MATCH(DMI_BOARD_ASSET_TAG,
- - "6ES7647-0AA00-1YA2"),
- },
- .driver_data = (void *)400000,
- },
- --
- 2.16.4
|