diff options
author | Josh Poimboeuf <jpoimboe@redhat.com> | 2020-04-29 18:24:51 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2020-05-08 01:12:43 +0300 |
commit | 0d9fbf78fefb421a3af97394ce80bba0db4f046a (patch) | |
tree | 9f6f827165f3691496fbf17e39418591e0ac1b2f /include/linux/module.h | |
parent | d556e1be33320366272ec02f93f98d7f308479f1 (diff) | |
download | linux-0d9fbf78fefb421a3af97394ce80bba0db4f046a.tar.xz |
module: Remove module_disable_ro()
module_disable_ro() has no more users. Remove it.
Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Joe Lawrence <joe.lawrence@redhat.com>
Acked-by: Miroslav Benes <mbenes@suse.cz>
Acked-by: Jessica Yu <jeyu@kernel.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 1ad393e62bef..e4ef7b36feda 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -860,10 +860,8 @@ extern int module_sysfs_initialized; #ifdef CONFIG_STRICT_MODULE_RWX extern void module_enable_ro(const struct module *mod, bool after_init); -extern void module_disable_ro(const struct module *mod); #else static inline void module_enable_ro(const struct module *mod, bool after_init) { } -static inline void module_disable_ro(const struct module *mod) { } #endif #ifdef CONFIG_GENERIC_BUG |