diff options
Diffstat (limited to 'drivers/mfd/twl-core.c')
-rw-r--r-- | drivers/mfd/twl-core.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c index 86c4ab293b2..990666ba63d 100644 --- a/drivers/mfd/twl-core.c +++ b/drivers/mfd/twl-core.c @@ -1393,10 +1393,14 @@ 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 */ if (features & TWL6032_SUBCLASS) { if (twlrev == 1) errata |= TWL6032_ERRATA_DB00119490; + } else { + if (twlrev == 2) + errata |= TWL6030_ERRATA_DB00112620; } } |