diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 23:58:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-01 23:58:25 -0400 |
commit | 81a3c10ce8a7fd5bf9a06bfc38bd417512911831 (patch) | |
tree | 12ceac10fae8c4b2dc17b362672a5db305a8d960 /arch/arm/mach-omap1/board-palmz71.c | |
parent | 6585dea1f99cc2265582ff2e4cc1727062136e92 (diff) | |
parent | df80442d1ee2902c2e39f90f18160f2e08d14c06 (diff) |
Merge branch 'next/cleanup2' of git://git.linaro.org/people/arnd/arm-soc
* 'next/cleanup2' of git://git.linaro.org/people/arnd/arm-soc: (31 commits)
ARM: OMAP: Warn if omap_ioremap is called before SoC detection
ARM: OMAP: Move set_globals initialization to happen in init_early
ARM: OMAP: Map SRAM later on with ioremap_exec()
ARM: OMAP: Remove calls to SRAM allocations for framebuffer
ARM: OMAP: Avoid cpu_is_omapxxxx usage until map_io is done
ARM: OMAP1: Use generic map_io, init_early and init_irq
arm/dts: OMAP3+: Add mpu, dsp and iva nodes
arm/dts: OMAP4: Add a main ocp entry bound to l3-noc driver
ARM: OMAP2+: l3-noc: Add support for device-tree
ARM: OMAP2+: board-generic: Add i2c static init
ARM: OMAP2+: board-generic: Add DT support to generic board
arm/dts: Add support for OMAP3 Beagle board
arm/dts: Add initial device tree support for OMAP3 SoC
arm/dts: Add support for OMAP4 SDP board
arm/dts: Add support for OMAP4 PandaBoard
arm/dts: Add initial device tree support for OMAP4 SoC
ARM: OMAP: omap_device: Add a method to build an omap_device from a DT node
ARM: OMAP: omap_device: Add omap_device_[alloc|delete] for DT integration
of: Add helpers to get one string in multiple strings property
ARM: OMAP2+: devices: Remove all omap_device_pm_latency structures
...
Fix up trivial header file conflicts in arch/arm/mach-omap2/board-generic.c
Diffstat (limited to 'arch/arm/mach-omap1/board-palmz71.c')
-rw-r--r-- | arch/arm/mach-omap1/board-palmz71.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/arch/arm/mach-omap1/board-palmz71.c b/arch/arm/mach-omap1/board-palmz71.c index de36ade38ef7..c6fe61dfe856 100644 --- a/arch/arm/mach-omap1/board-palmz71.c +++ b/arch/arm/mach-omap1/board-palmz71.c | |||
@@ -57,13 +57,6 @@ | |||
57 | #define PALMZ71_SLIDER_GPIO OMAP_MPUIO(3) | 57 | #define PALMZ71_SLIDER_GPIO OMAP_MPUIO(3) |
58 | #define PALMZ71_MMC_IN_GPIO OMAP_MPUIO(4) | 58 | #define PALMZ71_MMC_IN_GPIO OMAP_MPUIO(4) |
59 | 59 | ||
60 | static void __init | ||
61 | omap_palmz71_init_irq(void) | ||
62 | { | ||
63 | omap1_init_common_hw(); | ||
64 | omap1_init_irq(); | ||
65 | } | ||
66 | |||
67 | static const unsigned int palmz71_keymap[] = { | 60 | static const unsigned int palmz71_keymap[] = { |
68 | KEY(0, 0, KEY_F1), | 61 | KEY(0, 0, KEY_F1), |
69 | KEY(1, 0, KEY_F2), | 62 | KEY(1, 0, KEY_F2), |
@@ -334,17 +327,12 @@ omap_palmz71_init(void) | |||
334 | palmz71_gpio_setup(0); | 327 | palmz71_gpio_setup(0); |
335 | } | 328 | } |
336 | 329 | ||
337 | static void __init | ||
338 | omap_palmz71_map_io(void) | ||
339 | { | ||
340 | omap1_map_common_io(); | ||
341 | } | ||
342 | |||
343 | MACHINE_START(OMAP_PALMZ71, "OMAP310 based Palm Zire71") | 330 | MACHINE_START(OMAP_PALMZ71, "OMAP310 based Palm Zire71") |
344 | .atag_offset = 0x100, | 331 | .atag_offset = 0x100, |
345 | .map_io = omap_palmz71_map_io, | 332 | .map_io = omap15xx_map_io, |
333 | .init_early = omap1_init_early, | ||
346 | .reserve = omap_reserve, | 334 | .reserve = omap_reserve, |
347 | .init_irq = omap_palmz71_init_irq, | 335 | .init_irq = omap1_init_irq, |
348 | .init_machine = omap_palmz71_init, | 336 | .init_machine = omap_palmz71_init, |
349 | .timer = &omap1_timer, | 337 | .timer = &omap1_timer, |
350 | MACHINE_END | 338 | MACHINE_END |