diff options
author | Andreas Dannenberg <dannenberg@ti.com> | 2015-09-28 22:33:54 (GMT) |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2015-09-29 14:49:58 (GMT) |
commit | 7ef62365c61572085e63e8a7c3483bacfff6e541 (patch) | |
tree | dffcf72e6d8d3dedc8c401f18e25ec80ab0c840c | |
parent | bf02dca9ee9d5f9ea7a0ef2e15a2051b8cca6b09 (diff) | |
download | linux-7ef62365c61572085e63e8a7c3483bacfff6e541.tar.xz |
power: bq24257: Add bit definition for temp sense enable
Adding a missing bit definition for the sake of consistency device model
vs. bit field representation. No change in functionality.
Signed-off-by: Andreas Dannenberg <dannenberg@ti.com>
Reviewed-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
-rw-r--r-- | drivers/power/bq24257_charger.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/power/bq24257_charger.c b/drivers/power/bq24257_charger.c index b0c8533..93f7582 100644 --- a/drivers/power/bq24257_charger.c +++ b/drivers/power/bq24257_charger.c @@ -66,7 +66,7 @@ enum bq24257_fields { F_VBAT, F_USB_DET, /* REG 3 */ F_ICHG, F_ITERM, /* REG 4 */ F_LOOP_STATUS, F_LOW_CHG, F_DPDM_EN, F_CE_STATUS, F_VINDPM, /* REG 5 */ - F_X2_TMR_EN, F_TMR, F_SYSOFF, F_TS_STAT, /* REG 6 */ + F_X2_TMR_EN, F_TMR, F_SYSOFF, F_TS_EN, F_TS_STAT, /* REG 6 */ F_VOVP, F_CLR_VDP, F_FORCE_BATDET, F_FORCE_PTM, /* REG 7 */ F_MAX_FIELDS @@ -156,6 +156,7 @@ static const struct reg_field bq24257_reg_fields[] = { [F_X2_TMR_EN] = REG_FIELD(BQ24257_REG_6, 7, 7), [F_TMR] = REG_FIELD(BQ24257_REG_6, 5, 6), [F_SYSOFF] = REG_FIELD(BQ24257_REG_6, 4, 4), + [F_TS_EN] = REG_FIELD(BQ24257_REG_6, 3, 3), [F_TS_STAT] = REG_FIELD(BQ24257_REG_6, 0, 2), /* REG 7 */ [F_VOVP] = REG_FIELD(BQ24257_REG_7, 5, 7), |