diff options
author | Kyle Repinski <repinski23@gmail.com> | 2014-10-12 14:57:32 -0500 |
---|---|---|
committer | Ziyann <jaraidaniel@gmail.com> | 2014-11-19 21:12:40 +0100 |
commit | 893e1f46b96f1bdd562ce77103f5dfe5d91d649b (patch) | |
tree | 2581d7cfdc70205d42a3ab1fa0fe0a6b3b14336a /arch/arm/mach-omap2/board-tuna-modems.c | |
parent | bd0d4e4c22a3ca10cb3db7caea83491d6eec446b (diff) | |
download | kernel_samsung_tuna-893e1f46b96f1bdd562ce77103f5dfe5d91d649b.zip kernel_samsung_tuna-893e1f46b96f1bdd562ce77103f5dfe5d91d649b.tar.gz kernel_samsung_tuna-893e1f46b96f1bdd562ce77103f5dfe5d91d649b.tar.bz2 |
Revert "Move HSI and GPIO muxing to board-tuna-modems.c"
This reverts commit da0ff48282f4fed7a1738b8b5f6c5b7f098f178b.
Conflicts:
arch/arm/mach-omap2/omap_hsi.c
Diffstat (limited to 'arch/arm/mach-omap2/board-tuna-modems.c')
-rwxr-xr-x | arch/arm/mach-omap2/board-tuna-modems.c | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/arch/arm/mach-omap2/board-tuna-modems.c b/arch/arm/mach-omap2/board-tuna-modems.c index c63ddd3..2a0c5b4 100755 --- a/arch/arm/mach-omap2/board-tuna-modems.c +++ b/arch/arm/mach-omap2/board-tuna-modems.c @@ -730,74 +730,12 @@ void __init modem_toro_init(void) platform_device_register(<e_modem_wake); } -#ifdef CONFIG_OMAP_HSI_DEVICE -static void __init omap_hsi_pad_conf(void) -{ - /* - * HSI pad conf: hsi1_ca/ac_wake/flag/data/ready - * Also configure gpio_92/95/157/187 used by modem - */ - /* hsi1_cawake */ - omap_mux_init_signal("usbb1_ulpitll_clk.hsi1_cawake", \ - OMAP_PIN_INPUT_PULLDOWN | \ - OMAP_PIN_OFF_NONE | \ - OMAP_PIN_OFF_WAKEUPENABLE); - /* hsi1_caflag */ - omap_mux_init_signal("usbb1_ulpitll_dir.hsi1_caflag", \ - OMAP_PIN_INPUT | \ - OMAP_PIN_OFF_NONE); - /* hsi1_cadata */ - omap_mux_init_signal("usbb1_ulpitll_stp.hsi1_cadata", \ - OMAP_PIN_INPUT | \ - OMAP_PIN_OFF_NONE); - /* hsi1_acready */ - omap_mux_init_signal("usbb1_ulpitll_nxt.hsi1_acready", \ - OMAP_PIN_OUTPUT | \ - OMAP_OFF_EN); - /* hsi1_acwake */ - omap_mux_init_signal("usbb1_ulpitll_dat0.hsi1_acwake", \ - OMAP_PIN_OUTPUT | \ - OMAP_OFF_EN); - /* hsi1_acdata */ - omap_mux_init_signal("usbb1_ulpitll_dat1.hsi1_acdata", \ - OMAP_PIN_OUTPUT | \ - OMAP_OFF_EN); - /* hsi1_acflag */ - omap_mux_init_signal("usbb1_ulpitll_dat2.hsi1_acflag", \ - OMAP_PIN_OUTPUT | \ - OMAP_OFF_EN); - /* hsi1_caready */ - omap_mux_init_signal("usbb1_ulpitll_dat3.hsi1_caready", \ - OMAP_PIN_INPUT | \ - OMAP_PIN_OFF_NONE); - /* gpio_92 */ - omap_mux_init_signal("usbb1_ulpitll_dat4.gpio_92", \ - OMAP_PULL_ENA); - /* gpio_95 */ - omap_mux_init_signal("usbb1_ulpitll_dat7.gpio_95", \ - OMAP_PIN_INPUT_PULLDOWN | \ - OMAP_PIN_OFF_NONE); - /* gpio_157 */ - omap_mux_init_signal("usbb2_ulpitll_clk.gpio_157", \ - OMAP_PIN_OUTPUT | \ - OMAP_PIN_OFF_NONE); - /* gpio_187 */ - omap_mux_init_signal("sys_boot3.gpio_187", \ - OMAP_PIN_OUTPUT | \ - OMAP_PIN_OFF_NONE); -} -#endif - static int __init init_modem(void) { pr_debug("[MODEM_IF] init_modem\n"); switch (omap4_tuna_get_type()) { case TUNA_TYPE_MAGURO: /* HSPA */ -#ifdef CONFIG_OMAP_HSI_DEVICE - /* HSI devices registration */ - omap_hsi_pad_conf(); -#endif /* umts gpios configuration */ umts_modem_cfg_gpio(); platform_device_register(&umts_modem); @@ -816,7 +754,6 @@ static int __init init_modem(void) default: break; } - return 0; } late_initcall(init_modem); |