diff options
author | Vikram Pandita <vikram.pandita@ti.com> | 2011-06-13 15:15:59 -0700 |
---|---|---|
committer | Benoit Goby <benoit@android.com> | 2011-06-20 21:24:30 -0700 |
commit | 744c1561fc028be58230147cc8543e2a694bdbce (patch) | |
tree | f5ad4ce5c5f28ffc4bcbb4654e869a7545c49644 /arch/arm | |
parent | d900247d93cd56e49270f266ba86e218b401b3e4 (diff) | |
download | kernel_samsung_tuna-744c1561fc028be58230147cc8543e2a694bdbce.zip kernel_samsung_tuna-744c1561fc028be58230147cc8543e2a694bdbce.tar.gz kernel_samsung_tuna-744c1561fc028be58230147cc8543e2a694bdbce.tar.bz2 |
ARM: omap: tuna: add HSI support
Adds basic HSI support for tuna
Change-Id: I844297038d6a5e676a1ecfa83035c5d568ee342e
Signed-off-by: Vikram Pandita <vikram.pandita@ti.com>
Diffstat (limited to 'arch/arm')
-rwxr-xr-x | arch/arm/mach-omap2/board-tuna.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-omap2/board-tuna.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-tuna.c b/arch/arm/mach-omap2/board-tuna.c index 1a76cec..fa7493d 100755 --- a/arch/arm/mach-omap2/board-tuna.c +++ b/arch/arm/mach-omap2/board-tuna.c @@ -599,6 +599,10 @@ static void __init tuna_init(void) omap4_tuna_power_init(); omap4_tuna_nfc_init(); omap4_tuna_sensors_init(); +#ifdef CONFIG_OMAP_HSI_DEVICE + if (TUNA_TYPE_MAGURO == omap4_tuna_get_type()) + omap_hsi_init(); +#endif } static void __init tuna_map_io(void) diff --git a/arch/arm/mach-omap2/board-tuna.h b/arch/arm/mach-omap2/board-tuna.h index 9ec302c..62e9c8a 100644 --- a/arch/arm/mach-omap2/board-tuna.h +++ b/arch/arm/mach-omap2/board-tuna.h @@ -30,6 +30,7 @@ void omap4_tuna_input_init(void); void omap4_tuna_power_init(void); void omap4_tuna_sensors_init(void); int tuna_wlan_init(void); +int omap_hsi_init(void); extern struct mmc_platform_data tuna_wifi_data; |