diff options
Diffstat (limited to 'drivers/mfd/twl-core.c')
-rw-r--r-- | drivers/mfd/twl-core.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c index 990666b..0ad61da 100644 --- a/drivers/mfd/twl-core.c +++ b/drivers/mfd/twl-core.c @@ -1394,13 +1394,16 @@ twl_probe(struct i2c_client *client, const struct i2c_device_id *id) * Check for the errata implementation * Errata ProDB00119490 present only in the TWL6032 ES1.1 * Errata ProDB00112620 present only in the TWL6030 ES2.1 + * Errata ProDB00110684 present only in the TWL6030 ES2.1 */ if (features & TWL6032_SUBCLASS) { if (twlrev == 1) errata |= TWL6032_ERRATA_DB00119490; } else { - if (twlrev == 2) + if (twlrev == 2) { errata |= TWL6030_ERRATA_DB00112620; + errata |= TWL6030_ERRATA_DB00110684; + } } } |