Skip to content

Commit 6e6fb54

Browse files
committed
Merge tag 'regulator-fix-v6.4-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
Pull regulator fix from Mark Brown: "One simple fix for v6.4, some incorrectly specified bitfield masks in the PCA9450 driver" * tag 'regulator-fix-v6.4-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: regulator: pca9450: Fix LDO3OUT and LDO4OUT MASK
2 parents e075d68 + 7257d93 commit 6e6fb54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/linux/regulator/pca9450.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,11 @@ enum {
196196

197197
/* PCA9450_REG_LDO3_VOLT bits */
198198
#define LDO3_EN_MASK 0xC0
199-
#define LDO3OUT_MASK 0x0F
199+
#define LDO3OUT_MASK 0x1F
200200

201201
/* PCA9450_REG_LDO4_VOLT bits */
202202
#define LDO4_EN_MASK 0xC0
203-
#define LDO4OUT_MASK 0x0F
203+
#define LDO4OUT_MASK 0x1F
204204

205205
/* PCA9450_REG_LDO5_VOLT bits */
206206
#define LDO5L_EN_MASK 0xC0

0 commit comments

Comments
 (0)