summaryrefslogtreecommitdiff
path: root/arch/ppc/kernel
diff options
context:
space:
mode:
authorAndrew Morton <akpm@digeo.com>2003-05-12 09:10:05 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-05-12 09:10:05 -0700
commitb7df5197b4b05adfa66563a5908d29ef74c0fc64 (patch)
tree8084246585c916b9cbd9b005324b45ab63890c63 /arch/ppc/kernel
parentf2248e8df63696954a4984fa5fa4d64a135f6de9 (diff)
[PATCH] implement module_arch_cleanup() in all architectures
From: Rusty Russell <rusty@rustcorp.com.au>, David Mosberger The patch below updates the other platforms with module_arch_cleanup(). Also, I added more debug output to kernel/module.c since I found it useful to be able to see the final section layout.
Diffstat (limited to 'arch/ppc/kernel')
-rw-r--r--arch/ppc/kernel/module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/ppc/kernel/module.c b/arch/ppc/kernel/module.c
index e9e586cb0718..d263eacc0625 100644
--- a/arch/ppc/kernel/module.c
+++ b/arch/ppc/kernel/module.c
@@ -269,3 +269,7 @@ int module_finalize(const Elf_Ehdr *hdr,
{
return 0;
}
+
+void module_arch_cleanup(struct module *mod)
+{
+}