diff options
Diffstat (limited to 'arch/arm/kernel/setup.c')
-rw-r--r-- | arch/arm/kernel/setup.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 7049815d66d5..8d21427bb679 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <asm/mach/irq.h> | 40 | #include <asm/mach/irq.h> |
41 | #include <asm/mach/time.h> | 41 | #include <asm/mach/time.h> |
42 | #include <asm/traps.h> | 42 | #include <asm/traps.h> |
43 | #include <asm/unwind.h> | ||
43 | 44 | ||
44 | #include "compat.h" | 45 | #include "compat.h" |
45 | #include "atags.h" | 46 | #include "atags.h" |
@@ -684,6 +685,8 @@ void __init setup_arch(char **cmdline_p) | |||
684 | struct machine_desc *mdesc; | 685 | struct machine_desc *mdesc; |
685 | char *from = default_command_line; | 686 | char *from = default_command_line; |
686 | 687 | ||
688 | unwind_init(); | ||
689 | |||
687 | setup_processor(); | 690 | setup_processor(); |
688 | mdesc = setup_machine(machine_arch_type); | 691 | mdesc = setup_machine(machine_arch_type); |
689 | machine_name = mdesc->name; | 692 | machine_name = mdesc->name; |
@@ -779,6 +782,8 @@ static const char *hwcap_str[] = { | |||
779 | "crunch", | 782 | "crunch", |
780 | "thumbee", | 783 | "thumbee", |
781 | "neon", | 784 | "neon", |
785 | "vfpv3", | ||
786 | "vfpv3d16", | ||
782 | NULL | 787 | NULL |
783 | }; | 788 | }; |
784 | 789 | ||