Skip to content

Commit a1705f0

Browse files
jbrun3tlinusw
authored andcommitted
pinctrl: meson: fix meson8b ao pull register bits
AO pull register definition is inverted between pull (up/down) and pull enable. Fixing this allows to properly apply bias setting through pinconf Fixes: 0fefcb6 ("pinctrl: Add support for Meson8b") Signed-off-by: Jerome Brunet <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
1 parent e91b162 commit a1705f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/meson/pinctrl-meson8b.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ static struct meson_bank meson8b_cbus_banks[] = {
906906

907907
static struct meson_bank meson8b_aobus_banks[] = {
908908
/* name first lastc irq pullen pull dir out in */
909-
BANK("AO", GPIOAO_0, GPIO_TEST_N, 0, 13, 0, 0, 0, 16, 0, 0, 0, 16, 1, 0),
909+
BANK("AO", GPIOAO_0, GPIO_TEST_N, 0, 13, 0, 16, 0, 0, 0, 0, 0, 16, 1, 0),
910910
};
911911

912912
static struct meson_pinctrl_data meson8b_cbus_pinctrl_data = {

0 commit comments

Comments
 (0)