Skip to content

Commit 8684229

Browse files
ChiYuan Huangbroonie
authored andcommitted
regulator: rtq2208: Correct LDO2 logic judgment bits
The LDO2 judgement bit position should be 7, not 6. Cc: stable@vger.kernel.org Reported-by: Yoon Dong Min <dm.youn@telechips.com> Fixes: b65439d ("regulator: rtq2208: Fix the LDO DVS capability") Signed-off-by: ChiYuan Huang <cy_huang@richtek.com> Link: https://patch.msgid.link/faadb009f84b88bfcabe39fc5009c7357b00bbe2.1764209258.git.cy_huang@richtek.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 45cc214 commit 8684229

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/regulator/rtq2208-regulator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#define RTQ2208_MASK_BUCKPH_GROUP1 GENMASK(6, 4)
5454
#define RTQ2208_MASK_BUCKPH_GROUP2 GENMASK(2, 0)
5555
#define RTQ2208_MASK_LDO2_OPT0 BIT(7)
56-
#define RTQ2208_MASK_LDO2_OPT1 BIT(6)
56+
#define RTQ2208_MASK_LDO2_OPT1 BIT(7)
5757
#define RTQ2208_MASK_LDO1_FIXED BIT(6)
5858

5959
/* Size */

0 commit comments

Comments
 (0)