diff options
author | Kyle McMartin <kyle@mcmartin.ca> | 2009-03-15 16:49:55 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@mcmartin.ca> | 2009-04-02 00:16:27 -0400 |
commit | b609308e1415efebdf79ebd553f4dd47b0ff2722 (patch) | |
tree | 49755dcda956ee0ce75d6f3d3e38e4d54245f799 /arch/parisc/kernel/module.c | |
parent | bf589a349b9a41ea202ddb8115b18f543b944bfd (diff) |
parisc: move dereference_function_descriptor to process.c
Commit deac93df26b20cf8438339b5935b5f5643bc30c9 fixed up printing
of %pF on parisc, but added the dereference_function_descriptor
prototype to module.c... this isn't a particularly wise idea as
module.c might not always be compiled.
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc/kernel/module.c')
-rw-r--r-- | arch/parisc/kernel/module.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/parisc/kernel/module.c b/arch/parisc/kernel/module.c index 3439cbd896b5..ecd1c5024447 100644 --- a/arch/parisc/kernel/module.c +++ b/arch/parisc/kernel/module.c | |||
@@ -61,9 +61,7 @@ | |||
61 | #include <linux/string.h> | 61 | #include <linux/string.h> |
62 | #include <linux/kernel.h> | 62 | #include <linux/kernel.h> |
63 | #include <linux/bug.h> | 63 | #include <linux/bug.h> |
64 | #include <linux/uaccess.h> | ||
65 | 64 | ||
66 | #include <asm/sections.h> | ||
67 | #include <asm/unwind.h> | 65 | #include <asm/unwind.h> |
68 | 66 | ||
69 | #if 0 | 67 | #if 0 |
@@ -912,15 +910,3 @@ void module_arch_cleanup(struct module *mod) | |||
912 | deregister_unwind_table(mod); | 910 | deregister_unwind_table(mod); |
913 | module_bug_cleanup(mod); | 911 | module_bug_cleanup(mod); |
914 | } | 912 | } |
915 | |||
916 | #ifdef CONFIG_64BIT | ||
917 | void *dereference_function_descriptor(void *ptr) | ||
918 | { | ||
919 | Elf64_Fdesc *desc = ptr; | ||
920 | void *p; | ||
921 | |||
922 | if (!probe_kernel_address(&desc->addr, p)) | ||
923 | ptr = p; | ||
924 | return ptr; | ||
925 | } | ||
926 | #endif | ||