diff options
author | Mike Rapoport <[email protected]> | 2009-05-11 13:11:38 +0300 |
---|---|---|
committer | Mark Brown <[email protected]> | 2009-05-11 19:01:51 +0100 |
commit | 1ffafeb556d50de8039e14f1cbbe58e9e4549915 (patch) | |
tree | 92cf8744e46fad65393f9d1a8b91aa8e286087dd | |
parent | 914dc18255e430ceabb10b57394e01814c69c5cd (diff) |
pxa2xx-ac97: fix reset gpio mode setting
Signed-off-by: Mike Rapoport <[email protected]>
Acked-by: Eric Miao <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/arm/pxa2xx-ac97-lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/arm/pxa2xx-ac97-lib.c b/sound/arm/pxa2xx-ac97-lib.c index a2c12d105c9a..6fdca97186e7 100644 --- a/sound/arm/pxa2xx-ac97-lib.c +++ b/sound/arm/pxa2xx-ac97-lib.c @@ -65,7 +65,7 @@ static void set_resetgpio_mode(int resetgpio_action) switch (resetgpio_action) { case RESETGPIO_NORMAL_ALTFUNC: if (reset_gpio == 113) - mode = 113 | GPIO_OUT | GPIO_DFLT_LOW; + mode = 113 | GPIO_ALT_FN_2_OUT; if (reset_gpio == 95) mode = 95 | GPIO_ALT_FN_1_OUT; break; |