Commit a3a67b1f authored by Linus Torvalds's avatar Linus Torvalds

Re-introduce __MODULE_STRING, since some drivers depend on it.

(Yes, they should probably use __stringify() instead).
parent dc223510
......@@ -18,6 +18,10 @@
#include <asm/module.h>
#include <asm/uaccess.h> /* For struct exception_table_entry */
/* Indirect stringification */
#define __MODULE_STRING_1(x) #x
#define __MODULE_STRING(x) __MODULE_STRING_1(x)
/* Not Yet Implemented */
#define MODULE_LICENSE(name)
#define MODULE_AUTHOR(name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment