aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/setup.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2010-07-29 17:27:56 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-07-29 17:27:56 -0400
commita20df564d15bd28e3df24e1c65b885bd74d23f17 (patch)
treedf2fc17a1dbd53122de2785868cf9fbaeecf2122 /arch/arm/kernel/setup.c
parentd50f58bbd979e86378dfdec982452041f0e604ef (diff)
parente69edc7939abda1f696c482faa8168d80420f75c (diff)
Merge branch 'arm/booting' of git://git.pengutronix.de/git/ukl/linux-2.6 into devel-stable
Conflicts: arch/arm/Kconfig
Diffstat (limited to 'arch/arm/kernel/setup.c')
-rw-r--r--arch/arm/kernel/setup.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
index 122d999bdc7c..cbc6ddb1c9bd 100644
--- a/arch/arm/kernel/setup.c
+++ b/arch/arm/kernel/setup.c
@@ -44,7 +44,9 @@
44#include <asm/traps.h> 44#include <asm/traps.h>
45#include <asm/unwind.h> 45#include <asm/unwind.h>
46 46
47#if defined(CONFIG_DEPRECATED_PARAM_STRUCT)
47#include "compat.h" 48#include "compat.h"
49#endif
48#include "atags.h" 50#include "atags.h"
49#include "tcm.h" 51#include "tcm.h"
50 52
@@ -663,6 +665,13 @@ static int __init customize_machine(void)
663} 665}
664arch_initcall(customize_machine); 666arch_initcall(customize_machine);
665 667
668static void __init squash_mem_tags(struct tag *tag)
669{
670 for (; tag->hdr.size; tag = tag_next(tag))
671 if (tag->hdr.tag == ATAG_MEM)
672 tag->hdr.tag = ATAG_NONE;
673}
674
666void __init setup_arch(char **cmdline_p) 675void __init setup_arch(char **cmdline_p)
667{ 676{
668 struct tag *tags = (struct tag *)&init_tags; 677 struct tag *tags = (struct tag *)&init_tags;
@@ -683,12 +692,14 @@ void __init setup_arch(char **cmdline_p)
683 else if (mdesc->boot_params) 692 else if (mdesc->boot_params)
684 tags = phys_to_virt(mdesc->boot_params); 693 tags = phys_to_virt(mdesc->boot_params);
685 694
695#if defined(CONFIG_DEPRECATED_PARAM_STRUCT)
686 /* 696 /*
687 * If we have the old style parameters, convert them to 697 * If we have the old style parameters, convert them to
688 * a tag list. 698 * a tag list.
689 */ 699 */
690 if (tags->hdr.tag != ATAG_CORE) 700 if (tags->hdr.tag != ATAG_CORE)
691 convert_to_tag_list(tags); 701 convert_to_tag_list(tags);
702#endif
692 if (tags->hdr.tag != ATAG_CORE) 703 if (tags->hdr.tag != ATAG_CORE)
693 tags = (struct tag *)&init_tags; 704 tags = (struct tag *)&init_tags;
694 705