diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2005-01-07 22:02:44 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-01-07 22:02:44 -0800 |
| commit | 7d2b870243bef6003b4fd57bba8f9fc80894072f (patch) | |
| tree | f958870760510328719d763ddb7af440382bbec8 /include/linux/module.h | |
| parent | d4d539a9571355e80543616d2bbb6a498119c437 (diff) | |
[PATCH] Remove EXPORT_SYMBOL_NOVERS
Vadim Lobanov points out that EXPORT_SYMBOL_NOVERS is no longer used; in
fact, SH still uses it, but once we fix that, the kernel is clean. Remove
it.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/module.h')
| -rw-r--r-- | include/linux/module.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index c8dd7b8495c6..f49654225267 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -206,10 +206,6 @@ void *__symbol_get_gpl(const char *symbol); #endif -/* We don't mangle the actual symbol anymore, so no need for - * special casing EXPORT_SYMBOL_NOVERS. FIXME: Deprecated */ -#define EXPORT_SYMBOL_NOVERS(sym) EXPORT_SYMBOL(sym) - struct module_ref { local_t count; @@ -449,7 +445,6 @@ void module_remove_driver(struct device_driver *); #else /* !CONFIG_MODULES... */ #define EXPORT_SYMBOL(sym) #define EXPORT_SYMBOL_GPL(sym) -#define EXPORT_SYMBOL_NOVERS(sym) /* Given an address, look for it in the exception tables. */ static inline const struct exception_table_entry * |
