Skip to content

Commit

Permalink
module: preferred way to use MODULE_AUTHOR
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
jmberg authored and rustyrussell committed Sep 24, 2009
1 parent 26d052b commit 1d7015c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/linux/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 1d7015c

Please sign in to comment.