diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-12-10 03:16:09 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-12-22 04:44:03 -0500 |
commit | 4d1f3bbec49a080cae753aaa44dc1fc7277b3e50 (patch) | |
tree | 0f2ac29f232ceef181a8b1f348b16fee77b2e198 /arch/sh/kernel | |
parent | 4eec8834f085e5eaf70e64849f879068256c07c5 (diff) |
sh: Kill off sh64's unused alloc/free_task_struct() definitions.
These were left over from some time ago, sh64 never got around to
defining __HAVE_ARCH_TASK_STRUCT_ALLOCATOR during the conversion, and it
has no need to. Kill these off and use the generic versions instead.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r-- | arch/sh/kernel/process_64.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index 597cf02db3fc..e9bf2548d6d4 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c | |||
@@ -305,18 +305,6 @@ void show_regs(struct pt_regs * regs) | |||
305 | } | 305 | } |
306 | } | 306 | } |
307 | 307 | ||
308 | struct task_struct * alloc_task_struct(void) | ||
309 | { | ||
310 | /* Get task descriptor pages */ | ||
311 | return (struct task_struct *) | ||
312 | __get_free_pages(GFP_KERNEL, get_order(THREAD_SIZE)); | ||
313 | } | ||
314 | |||
315 | void free_task_struct(struct task_struct *p) | ||
316 | { | ||
317 | free_pages((unsigned long) p, get_order(THREAD_SIZE)); | ||
318 | } | ||
319 | |||
320 | /* | 308 | /* |
321 | * Create a kernel thread | 309 | * Create a kernel thread |
322 | */ | 310 | */ |