diff options
author | Andreas Kemnade <andreas@kemnade.info> | 2021-03-15 20:18:32 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-04-14 16:06:29 +0100 |
commit | d1157530d476ffce4485182eea5b492065362a09 (patch) | |
tree | 26ce18db1ac72e1e79e3d66d6e2b445f61133a51 /include/linux/mfd | |
parent | 4917e498c6894ba077867aff78f82cffd5ffbb5c (diff) |
mfd: ntxec: Support for EC in Tolino Shine 2 HD
Add the version of the EC in the Tolino Shine 2 HD
to the supported versions. It seems not to have an RTC
and does not ack data written to it.
The vendor kernel happily ignores write errors, using
I2C via userspace i2c-set also shows the error.
So add a quirk to ignore that error.
PWM can be successfully configured despite of that error.
Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/ntxec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mfd/ntxec.h b/include/linux/mfd/ntxec.h index 361204d125f1..26ab3b8eb612 100644 --- a/include/linux/mfd/ntxec.h +++ b/include/linux/mfd/ntxec.h @@ -33,5 +33,6 @@ static inline __be16 ntxec_reg8(u8 value) /* Known firmware versions */ #define NTXEC_VERSION_KOBO_AURA 0xd726 /* found in Kobo Aura */ +#define NTXEC_VERSION_TOLINO_SHINE2 0xf110 /* found in Tolino Shine 2 HD */ #endif |