diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/Kconfig | 1 | ||||
-rw-r--r-- | arch/sparc/Makefile | 1 | ||||
-rw-r--r-- | arch/sparc/kernel/Makefile | 1 | ||||
-rw-r--r-- | arch/sparc/kernel/init_task.c | 22 |
4 files changed, 1 insertions, 24 deletions
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index e417f35d5912..99aad7cd0075 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig | |||
@@ -31,6 +31,7 @@ config SPARC | |||
31 | select GENERIC_PCI_IOMAP | 31 | select GENERIC_PCI_IOMAP |
32 | select HAVE_NMI_WATCHDOG if SPARC64 | 32 | select HAVE_NMI_WATCHDOG if SPARC64 |
33 | select GENERIC_SMP_IDLE_THREAD | 33 | select GENERIC_SMP_IDLE_THREAD |
34 | select HAVE_GENERIC_INIT_TASK | ||
34 | 35 | ||
35 | config SPARC32 | 36 | config SPARC32 |
36 | def_bool !64BIT | 37 | def_bool !64BIT |
diff --git a/arch/sparc/Makefile b/arch/sparc/Makefile index eddcfb36aafb..cf39aaf24189 100644 --- a/arch/sparc/Makefile +++ b/arch/sparc/Makefile | |||
@@ -62,7 +62,6 @@ endif | |||
62 | endif | 62 | endif |
63 | 63 | ||
64 | head-y := arch/sparc/kernel/head_$(BITS).o | 64 | head-y := arch/sparc/kernel/head_$(BITS).o |
65 | head-y += arch/sparc/kernel/init_task.o | ||
66 | 65 | ||
67 | core-y += arch/sparc/kernel/ | 66 | core-y += arch/sparc/kernel/ |
68 | core-y += arch/sparc/mm/ arch/sparc/math-emu/ | 67 | core-y += arch/sparc/mm/ arch/sparc/math-emu/ |
diff --git a/arch/sparc/kernel/Makefile b/arch/sparc/kernel/Makefile index cb85458f89d2..9c74bdc0349c 100644 --- a/arch/sparc/kernel/Makefile +++ b/arch/sparc/kernel/Makefile | |||
@@ -6,7 +6,6 @@ asflags-y := -ansi | |||
6 | ccflags-y := -Werror | 6 | ccflags-y := -Werror |
7 | 7 | ||
8 | extra-y := head_$(BITS).o | 8 | extra-y := head_$(BITS).o |
9 | extra-y += init_task.o | ||
10 | 9 | ||
11 | # Undefine sparc when processing vmlinux.lds - it is used | 10 | # Undefine sparc when processing vmlinux.lds - it is used |
12 | # And teach CPP we are doing $(BITS) builds (for this case) | 11 | # And teach CPP we are doing $(BITS) builds (for this case) |
diff --git a/arch/sparc/kernel/init_task.c b/arch/sparc/kernel/init_task.c deleted file mode 100644 index 35f141a9f506..000000000000 --- a/arch/sparc/kernel/init_task.c +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | #include <linux/mm.h> | ||
2 | #include <linux/fs.h> | ||
3 | #include <linux/module.h> | ||
4 | #include <linux/sched.h> | ||
5 | #include <linux/init_task.h> | ||
6 | #include <linux/mqueue.h> | ||
7 | |||
8 | #include <asm/pgtable.h> | ||
9 | #include <asm/uaccess.h> | ||
10 | |||
11 | static struct signal_struct init_signals = INIT_SIGNALS(init_signals); | ||
12 | static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); | ||
13 | struct task_struct init_task = INIT_TASK(init_task); | ||
14 | EXPORT_SYMBOL(init_task); | ||
15 | |||
16 | /* .text section in head.S is aligned at 8k boundary and this gets linked | ||
17 | * right after that so that the init_thread_union is aligned properly as well. | ||
18 | * If this is not aligned on a 8k boundary, then you should change code | ||
19 | * in etrap.S which assumes it. | ||
20 | */ | ||
21 | union thread_union init_thread_union __init_task_data = | ||
22 | { INIT_THREAD_INFO(init_task) }; | ||