Skip to content

Commit c68472b

Browse files
committed
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rmk/linux
Pull ARM fix from Russell King: "Just one fix to the module freeing function that was declared __weak when it should not have been. Thanks to Petr Pavlu for spotting this" * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rmk/linux: ARM: 9458/1: module: Ensure the override of module_arch_freeing_init()
2 parents 6855f06 + 44a375e commit c68472b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/kernel/module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ module_arch_cleanup(struct module *mod)
484484
#endif
485485
}
486486

487-
void __weak module_arch_freeing_init(struct module *mod)
487+
void module_arch_freeing_init(struct module *mod)
488488
{
489489
#ifdef CONFIG_ARM_UNWIND
490490
struct unwind_table *init = mod->arch.init_table;

0 commit comments

Comments
 (0)