x86: Don't use module.h just for AUTHOR / LICENSE tags

The Kconfig controlling compilation of these files are:

 arch/x86/Kconfig.debug:config DEBUG_RODATA_TEST
 arch/x86/Kconfig.debug: bool "Testcase for the marking rodata read-only"

 arch/x86/Kconfig.debug:config X86_PTDUMP_CORE
 arch/x86/Kconfig.debug: def_bool n

...meaning that it currently is not being built as a module by anyone.

Lets remove the couple traces of modular infrastructure use, so that
when reading the driver there is no doubt it is builtin-only.

We delete the MODULE_LICENSE tag etc. since all that information
is already contained at the top of the file in the comments.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: Arjan van de Ven <arjan@linux.intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20160714001901.31603-2-paul.gortmaker@windriver.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
Paul Gortmaker 2016-07-13 20:18:54 -04:00 коммит произвёл Ingo Molnar
Родитель 8b3843996d
Коммит 84e629b668
2 изменённых файлов: 1 добавлений и 10 удалений

Просмотреть файл

@ -9,7 +9,6 @@
* as published by the Free Software Foundation; version 2
* of the License.
*/
#include <linux/module.h>
#include <asm/cacheflush.h>
#include <asm/sections.h>
#include <asm/asm.h>
@ -74,7 +73,3 @@ int rodata_test(void)
return 0;
}
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Testcase for marking rodata as read-only");
MODULE_AUTHOR("Arjan van de Ven <arjan@linux.intel.com>");

Просмотреть файл

@ -14,7 +14,7 @@
#include <linux/debugfs.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/seq_file.h>
#include <asm/pgtable.h>
@ -446,8 +446,4 @@ static int __init pt_dump_init(void)
return 0;
}
__initcall(pt_dump_init);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Arjan van de Ven <arjan@linux.intel.com>");
MODULE_DESCRIPTION("Kernel debugging helper that dumps pagetables");