diff options
author | Paul Gortmaker <[email protected]> | 2016-07-15 19:53:18 -0400 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2016-07-16 22:41:00 +0200 |
commit | 00677f826bd0c1befb87b8cfa10f30bde1cc2f32 (patch) | |
tree | 27644ad82f0576ab3ea085195e0be50f6ff5aaf7 | |
parent | eb008eb6f8b689853d6e9f4ae3ff56ea734e4319 (diff) |
x86/platform: Delete extraneous MODULE_* tags fromm ts5500
This file doesn't do anything modular and hence while the tristate
Kconfig used for the gpio portion is fine, it recently got swept up in
an audit of files using the module.h header but not using any modular
registration functions.
However it is not compiled in any of the normal build coverage, and
so some remaining extraneous MODULE macro use were not found until a
randconfig from the kbuild robot came across it.
Here we remove the remaining no-op MODULE macros from the built in
portion of code relating to this Kconfig option.
Reported-by: kbuild test robot <[email protected]>
Signed-off-by: Paul Gortmaker <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Savoir-faire Linux Inc. <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: [email protected]
Cc: [email protected]
Fixes: cc3ae7b0af27 ("x86/platform: Audit and remove any unnecessary uses of module.h")
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/platform/ts5500/ts5500.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/x86/platform/ts5500/ts5500.c b/arch/x86/platform/ts5500/ts5500.c index 952191bea75c..fd39301f25ac 100644 --- a/arch/x86/platform/ts5500/ts5500.c +++ b/arch/x86/platform/ts5500/ts5500.c @@ -345,7 +345,3 @@ error: return err; } device_initcall(ts5500_init); - -MODULE_LICENSE("GPL"); -MODULE_AUTHOR("Savoir-faire Linux Inc. <[email protected]>"); -MODULE_DESCRIPTION("Technologic Systems TS-5500 platform driver"); |