diff options
Diffstat (limited to 'arch/mips/kernel/module.c')
| -rw-r--r-- | arch/mips/kernel/module.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/arch/mips/kernel/module.c b/arch/mips/kernel/module.c index 14f46d17500a..0c936cbf20c5 100644 --- a/arch/mips/kernel/module.c +++ b/arch/mips/kernel/module.c @@ -21,6 +21,7 @@  #include <linux/spinlock.h>  #include <linux/jump_label.h> +extern void jump_label_apply_nops(struct module *mod);  struct mips_hi16 {  	struct mips_hi16 *next; @@ -428,8 +429,8 @@ int module_finalize(const Elf_Ehdr *hdr,  	const Elf_Shdr *s;  	char *secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; -	/* Make jump label nops. */ -	jump_label_apply_nops(me); +	if (IS_ENABLED(CONFIG_JUMP_LABEL)) +		jump_label_apply_nops(me);  	INIT_LIST_HEAD(&me->arch.dbe_list);  	for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) { |