projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26d052b
)
module: preferred way to use MODULE_AUTHOR
author
Johannes Berg
<
[email protected]
>
Fri, 25 Sep 2009 06:32:58 +0000
(
00:32
-0600)
committer
Rusty Russell
<
[email protected]
>
Thu, 24 Sep 2009 15:02:58 +0000
(
00:32
+0930)
For the longest time now we've been using multiple MODULE_AUTHOR()
statements when a module has more than one author, but the comment here
disagrees.
Signed-off-by: Johannes Berg <
[email protected]
>
Cc: Jiri Kosina <
[email protected]
>
Cc: Luciano Coelho <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Rusty Russell <
[email protected]
>
include/linux/module.h
patch
|
blob
|
history
diff --git
a/include/linux/module.h
b/include/linux/module.h
index aca980365956745ca2878704a2f548427f2765d4..482efc865acf272994b4de7906a8d403a1c1454a 100644
(file)
--- a/
include/linux/module.h
+++ b/
include/linux/module.h
@@
-128,7
+128,10
@@
extern struct module __this_module;
*/
#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
-/* Author, ideally of form NAME[, NAME]*[ and NAME] */
+/*
+ * Author(s), use "Name <email>" or just "Name", for multiple
+ * authors use multiple MODULE_AUTHOR() statements/lines.
+ */
#define MODULE_AUTHOR(_author) MODULE_INFO(author, _author)
/* What your module does. */