Messages in this thread Patch in this message |  | | From | Tom Zanussi <> | Subject | [PATCH v2 4/7] lib: Remove redundant module.h includes | Date | Mon, 13 Apr 2015 19:27:26 -0500 |
| |
kallsyms.h now includes module.h, so remove module.h includes that were apparently there only to satisfy kallsyms use of MODULE_NAME_LEN (via KSYM_SYMBOL_LEN).
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com> --- lib/vsprintf.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/lib/vsprintf.c b/lib/vsprintf.c index b235c96..c748b95 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -17,7 +17,6 @@ */ #include <stdarg.h> -#include <linux/module.h> /* for KSYM_SYMBOL_LEN */ #include <linux/types.h> #include <linux/string.h> #include <linux/ctype.h> -- 1.9.3
|  |