diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-21 20:29:42 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-21 20:29:42 +0300 |
commit | 6e6fb54de1ef34fd20a0bdd99ce72a657814391b (patch) | |
tree | 7cd757f30215c11b0458f3bf6038e79d8e37a993 /include | |
parent | e075d681a27eea6e3722749dda10cf3c4ddfc9fc (diff) | |
parent | 7257d930aadcd62d1c7971ab14f3b1126356abdc (diff) | |
download | linux-6e6fb54de1ef34fd20a0bdd99ce72a657814391b.tar.xz |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/regulator/pca9450.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/regulator/pca9450.h b/include/linux/regulator/pca9450.h index 3c01c2bf84f5..505c908dbb81 100644 --- a/include/linux/regulator/pca9450.h +++ b/include/linux/regulator/pca9450.h @@ -196,11 +196,11 @@ enum { /* PCA9450_REG_LDO3_VOLT bits */ #define LDO3_EN_MASK 0xC0 -#define LDO3OUT_MASK 0x0F +#define LDO3OUT_MASK 0x1F /* PCA9450_REG_LDO4_VOLT bits */ #define LDO4_EN_MASK 0xC0 -#define LDO4OUT_MASK 0x0F +#define LDO4OUT_MASK 0x1F /* PCA9450_REG_LDO5_VOLT bits */ #define LDO5L_EN_MASK 0xC0 |