From: Thadeu Lima de Souza Cascardo Date: Sun, 6 Dec 2009 01:10:37 +0000 (-0200) Subject: Added more descriptive module macros. X-Git-Tag: v1.4.0 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fkernel%2Fsamples%2F01.hello%2F.git;a=commitdiff_plain;h=35009a201c821efa0c15e8305fe8df11cb9d1324 Added more descriptive module macros. --- diff --git a/hello.c b/hello.c index 772a1e3..dca8626 100644 --- a/hello.c +++ b/hello.c @@ -1,6 +1,12 @@ /* Must be included by every module. */ #include +/* Author name comes here. */ +MODULE_AUTHOR("Thadeu Lima de Souza Cascardo "); +/* Tell a user what this modules does. */ +MODULE_DESCRIPTION("Prints a friendly message."); +/* Which version is this? */ +MODULE_VERSION("1.4.0"); /* Should be declared to not taint the kernel. */ MODULE_LICENSE("GPL");