diff options
| author | Andrew Morton <akpm@digeo.com> | 2003-05-12 09:10:05 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2003-05-12 09:10:05 -0700 |
| commit | b7df5197b4b05adfa66563a5908d29ef74c0fc64 (patch) | |
| tree | 8084246585c916b9cbd9b005324b45ab63890c63 /arch/ppc/kernel | |
| parent | f2248e8df63696954a4984fa5fa4d64a135f6de9 (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.c | 4 |
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) +{ +} |
