Commit 40717392 authored by Dr. David Alan Gilbert's avatar Dr. David Alan Gilbert Committed by Michael Ellerman

powerpc/module: Remove arch specific module bug stuff

The last function to reference module_bug_list went in 2008's
  commit b9754568 ("powerpc: Remove dead module_find_bug code")
but I don't think that was called since 2006's
  commit 73c9ceab ("[POWERPC] Generic BUG for powerpc")

Now that the list has gone, I think we can also clean up the bug
entries in mod_arch_specific.

Lightly boot tested.
Signed-off-by: default avatarDr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240503002317.183500-1-linux@treblig.org
parent 1fcd2547
...@@ -48,11 +48,6 @@ struct mod_arch_specific { ...@@ -48,11 +48,6 @@ struct mod_arch_specific {
unsigned long tramp; unsigned long tramp;
unsigned long tramp_regs; unsigned long tramp_regs;
#endif #endif
/* List of BUG addresses, source line numbers and filenames */
struct list_head bug_list;
struct bug_entry *bug_table;
unsigned int num_bugs;
}; };
/* /*
......
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
#include <asm/setup.h> #include <asm/setup.h>
#include <asm/sections.h> #include <asm/sections.h>
static LIST_HEAD(module_bug_list);
static const Elf_Shdr *find_section(const Elf_Ehdr *hdr, static const Elf_Shdr *find_section(const Elf_Ehdr *hdr,
const Elf_Shdr *sechdrs, const Elf_Shdr *sechdrs,
const char *name) const char *name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment