diff options
Diffstat (limited to 'scripts/mod/modpost.c')
| -rw-r--r-- | scripts/mod/modpost.c | 5 | 
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 2f5b91da5afa..937294ff164f 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -601,11 +601,6 @@ static int ignore_undef_symbol(struct elf_info *info, const char *symname)  		    strstarts(symname, "_savevr_") ||  		    strcmp(symname, ".TOC.") == 0)  			return 1; - -	if (info->hdr->e_machine == EM_S390) -		/* Expoline thunks are linked on all kernel modules during final link of .ko */ -		if (strstarts(symname, "__s390_indirect_jump_r")) -			return 1;  	/* Do not ignore this symbol */  	return 0;  }  |