diff options
Diffstat (limited to 'arch/ia64/kernel/module.c')
-rw-r--r-- | arch/ia64/kernel/module.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/ia64/kernel/module.c b/arch/ia64/kernel/module.c index 34fe4259a144..da3b0cf495a3 100644 --- a/arch/ia64/kernel/module.c +++ b/arch/ia64/kernel/module.c | |||
@@ -533,8 +533,7 @@ get_ltoff (struct module *mod, uint64_t value, int *okp) | |||
533 | goto found; | 533 | goto found; |
534 | 534 | ||
535 | /* Not enough GOT entries? */ | 535 | /* Not enough GOT entries? */ |
536 | if (e >= (struct got_entry *) (mod->arch.got->sh_addr + mod->arch.got->sh_size)) | 536 | BUG_ON(e >= (struct got_entry *) (mod->arch.got->sh_addr + mod->arch.got->sh_size)); |
537 | BUG(); | ||
538 | 537 | ||
539 | e->val = value; | 538 | e->val = value; |
540 | ++mod->arch.next_got_entry; | 539 | ++mod->arch.next_got_entry; |