Skip to content

Commit

Permalink
ARM: mach-sa1100: convert boot_params to atag_offset
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
  • Loading branch information
Nicolas Pitre authored and Nicolas Pitre committed Aug 21, 2011
1 parent 02350a1 commit 17f4425
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/assabet.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ static void __init assabet_map_io(void)


MACHINE_START(ASSABET, "Intel-Assabet")
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.fixup = fixup_assabet,
.map_io = assabet_map_io,
.init_irq = sa1100_init_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/badge4.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ static void __init badge4_map_io(void)
}

MACHINE_START(BADGE4, "Hewlett-Packard Laboratories BadgePAD 4")
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = badge4_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/h3100.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ static void __init h3100_mach_init(void)
}

MACHINE_START(H3100, "Compaq iPAQ H3100")
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = h3100_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/h3600.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ static void __init h3600_mach_init(void)
}

MACHINE_START(H3600, "Compaq iPAQ H3600")
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = h3600_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/hackkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ static void __init hackkit_init(void)
*/

MACHINE_START(HACKKIT, "HackKit Cpu Board")
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = hackkit_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/jornada720.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ static void __init jornada720_mach_init(void)

MACHINE_START(JORNADA720, "HP Jornada 720")
/* Maintainer: Kristoffer Ericson <Kristoffer.Ericson@gmail.com> */
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = jornada720_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/lart.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static void __init lart_map_io(void)
}

MACHINE_START(LART, "LART")
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = lart_map_io,
.init_irq = sa1100_init_irq,
.init_machine = lart_init,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/nanoengine.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static void __init nanoengine_init(void)
}

MACHINE_START(NANOENGINE, "BSE nanoEngine")
.boot_params = 0xc0000000,
.atag_offset = 0x100,
.map_io = nanoengine_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/shannon.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void __init shannon_map_io(void)
}

MACHINE_START(SHANNON, "Shannon (AKA: Tuxscreen)")
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = shannon_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-sa1100/simpad.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ arch_initcall(simpad_init);

MACHINE_START(SIMPAD, "Simpad")
/* Maintainer: Holger Freyther */
.boot_params = 0xc0000100,
.atag_offset = 0x100,
.map_io = simpad_map_io,
.init_irq = sa1100_init_irq,
.timer = &sa1100_timer,
Expand Down

0 comments on commit 17f4425

Please sign in to comment.