diff options
Diffstat (limited to 'arch/arm/kernel/setup.c')
-rw-r--r-- | arch/arm/kernel/setup.c | 11 |
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 | } |
664 | arch_initcall(customize_machine); | 666 | arch_initcall(customize_machine); |
665 | 667 | ||
668 | static 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 | |||
666 | void __init setup_arch(char **cmdline_p) | 675 | void __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 | ||