Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3108cf06 authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: Fix up __bug_table handling in module loader.



We should be calling in to the lib/bug.c module helpers, fix that up.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent b5ed0422
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@
#include <linux/moduleloader.h>
#include <linux/elf.h>
#include <linux/vmalloc.h>
#include <linux/bug.h>
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/kernel.h>
@@ -145,9 +146,10 @@ int module_finalize(const Elf_Ehdr *hdr,
		    const Elf_Shdr *sechdrs,
		    struct module *me)
{
	return 0;
	return module_bug_finalize(hdr, sechdrs, me);
}

void module_arch_cleanup(struct module *mod)
{
	module_bug_cleanup(mod);
}