diff options
author | wonhee <wonhee48.seo@samsung.com> | 2011-10-01 09:10:23 +0900 |
---|---|---|
committer | Benoit Goby <benoit@android.com> | 2011-10-02 14:54:48 -0700 |
commit | 45e90daddb4a0fe07b0d7244b6b23f66894c7b88 (patch) | |
tree | ddc9de86c5541eac80ac565e73e83d4fe6605bc0 | |
parent | d05cc77658f91534e18e4da80f079918763dac90 (diff) | |
download | kernel_samsung_tuna-45e90daddb4a0fe07b0d7244b6b23f66894c7b88.zip kernel_samsung_tuna-45e90daddb4a0fe07b0d7244b6b23f66894c7b88.tar.gz kernel_samsung_tuna-45e90daddb4a0fe07b0d7244b6b23f66894c7b88.tar.bz2 |
misc: modem_if: Fix wrong init gpio
1. Fix wrong init 'GPS_UART_SEL' gpio.
- initialized wrong gpio pin
Change-Id: Ic853974948bd44afebee8a0fc6a243a9f2e3db80
Signed-off-by: wonhee <wonhee48.seo@samsung.com>
-rwxr-xr-x | arch/arm/mach-omap2/board-tuna-modems.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-tuna-modems.c b/arch/arm/mach-omap2/board-tuna-modems.c index d895f3b..2e8d848 100755 --- a/arch/arm/mach-omap2/board-tuna-modems.c +++ b/arch/arm/mach-omap2/board-tuna-modems.c @@ -206,7 +206,7 @@ static void umts_modem_cfg_gpio(void) if (gpio_flm_uart_sel) { gpio_request(gpio_flm_uart_sel, "GPS_UART_SEL"); - gpio_direction_output(gpio_reset_req_n, 1); + gpio_direction_output(gpio_flm_uart_sel, 1); } if (gpio_phone_active) |