Skip to content

Commit 2b6a761

Browse files
ChiYuan Huangbroonie
authored andcommitted
regulator: rtmv20: Fix wrong mask for strobe-polarity-high
Fix wrong mask for strobe-polarity-high. Signed-off-by: ChiYuan Huang <[email protected]> In-reply-to: <CAFRkauB=0KwrJW19nJTTagdHhBR=V2R8YFWG3R3oVXt=rBRsqw@mail.gmail.com> Reviewed-by: Axel Lin <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent ddf275b commit 2b6a761

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/regulator/rtmv20-regulator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#define RTMV20_WIDTH2_MASK GENMASK(7, 0)
3737
#define RTMV20_LBPLVL_MASK GENMASK(3, 0)
3838
#define RTMV20_LBPEN_MASK BIT(7)
39-
#define RTMV20_STROBEPOL_MASK BIT(1)
39+
#define RTMV20_STROBEPOL_MASK BIT(0)
4040
#define RTMV20_VSYNPOL_MASK BIT(1)
4141
#define RTMV20_FSINEN_MASK BIT(7)
4242
#define RTMV20_ESEN_MASK BIT(6)

0 commit comments

Comments
 (0)