[PATCH] Un-deprecate inter_module_*

From: Lee Revell
Date: Wed Dec 21 2005 - 19:12:01 EST


Andrew,

I am also sick of looking at "inter_module_foo is deprecated" warnings.
They have been deprecated for 6-12 months and obviously no one is fixing
it. I don't have the time or the inclination to fix it so here's a
patch to un-deprecate inter_module_*.

Signed-Off-By: Lee Revell <rlrevell@xxxxxxxxxxx>

--- include/linux/module.h~ 2005-12-16 14:45:27.000000000 -0500
+++ include/linux/module.h 2005-12-21 19:10:16.000000000 -0500
@@ -567,11 +567,11 @@

/* Use symbol_get and symbol_put instead. You'll thank me. */
#define HAVE_INTER_MODULE
-extern void __deprecated inter_module_register(const char *,
+extern void inter_module_register(const char *,
struct module *, const void *);
-extern void __deprecated inter_module_unregister(const char *);
-extern const void * __deprecated inter_module_get_request(const char *,
+extern void inter_module_unregister(const char *);
+extern const void * inter_module_get_request(const char *,
const char *);
-extern void __deprecated inter_module_put(const char *);
+extern void inter_module_put(const char *);

#endif /* _LINUX_MODULE_H */


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/