aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap1/board-palmtt.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-omap1/board-palmtt.c')
-rw-r--r--arch/arm/mach-omap1/board-palmtt.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/arch/arm/mach-omap1/board-palmtt.c b/arch/arm/mach-omap1/board-palmtt.c
index 11a9853..f04f2d3 100644
--- a/arch/arm/mach-omap1/board-palmtt.c
+++ b/arch/arm/mach-omap1/board-palmtt.c
@@ -12,7 +12,6 @@
*/
#include <linux/delay.h>
-#include <linux/gpio.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
@@ -31,6 +30,7 @@
#include <asm/mach/map.h>
#include <plat/led.h>
+#include <mach/gpio.h>
#include <plat/flash.h>
#include <plat/mux.h>
#include <plat/usb.h>
@@ -263,6 +263,12 @@ static struct spi_board_info __initdata palmtt_boardinfo[] = {
}
};
+static void __init omap_palmtt_init_irq(void)
+{
+ omap1_init_common_hw();
+ omap_init_irq();
+}
+
static struct omap_usb_config palmtt_usb_config __initdata = {
.register_dev = 1,
.hmc_mode = 0,
@@ -309,12 +315,16 @@ static void __init omap_palmtt_init(void)
omap_register_i2c_bus(1, 100, NULL, 0);
}
+static void __init omap_palmtt_map_io(void)
+{
+ omap1_map_common_io();
+}
+
MACHINE_START(OMAP_PALMTT, "OMAP1510 based Palm Tungsten|T")
- .atag_offset = 0x100,
- .map_io = omap15xx_map_io,
- .init_early = omap1_init_early,
+ .boot_params = 0x10000100,
+ .map_io = omap_palmtt_map_io,
.reserve = omap_reserve,
- .init_irq = omap1_init_irq,
+ .init_irq = omap_palmtt_init_irq,
.init_machine = omap_palmtt_init,
- .timer = &omap1_timer,
+ .timer = &omap_timer,
MACHINE_END