aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-s3c6410/om-gta03-features.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c6410/om-gta03-features.c b/arch/arm/mach-s3c6410/om-gta03-features.c
index 32ea4a3b0f9..b1b8db5179c 100644
--- a/arch/arm/mach-s3c6410/om-gta03-features.c
+++ b/arch/arm/mach-s3c6410/om-gta03-features.c
@@ -84,7 +84,7 @@ static void om_gta03_features_pwron_set_on(enum feature feature)
s3c_gpio_cfgpin(GTA03_GPIO_N_MODEM_RESET, S3C_GPIO_SFN(1));
gpio_direction_output(GTA03_GPIO_N_MODEM_RESET, 0);
- gpio_direction_output(GTA03_GPIO_MODEN_ON, 1);
+ gpio_direction_output(GTA03_GPIO_MODEN_ON, 0);
s3c_gpio_setpull(GTA03_GPIO_MODEN_ON, S3C_GPIO_PULL_NONE);
s3c_gpio_cfgpin(GTA03_GPIO_MODEN_ON, S3C_GPIO_SFN(1));
msleep(1);
@@ -117,7 +117,7 @@ static void om_gta03_features_pwron_set_off(enum feature feature)
break;
case OM_GTA03_GSM:
/* remove power from WLAN / BT module */
- gpio_direction_output(GTA03_GPIO_MODEN_ON, 0);
+ gpio_direction_output(GTA03_GPIO_MODEN_ON, 1);
s3c_gpio_setpull(GTA03_GPIO_MODEN_ON, S3C_GPIO_PULL_NONE);
s3c_gpio_cfgpin(GTA03_GPIO_MODEN_ON, S3C_GPIO_SFN(1));
break;