From: Dave Jiang Date: Thu, 11 Feb 2021 20:21:29 +0000 (-0700) Subject: driver core: auxiliary bus: Remove unneeded module bits X-Git-Tag: accepted/tizen/unified/20230118.172025~7415^2~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bbf44abeeabfe05a124535e6c3a9fd7d682d42bf;p=platform%2Fkernel%2Flinux-rpi.git driver core: auxiliary bus: Remove unneeded module bits Remove module bits in the auxiliary bus code since the auxiliary bus cannot be built as a module and the relevant code is not needed. Cc: Dave Ertman Suggested-by: Greg Kroah-Hartman Signed-off-by: Dave Jiang Link: https://lore.kernel.org/r/161307488980.1896017.15627190714413338196.stgit@djiang5-desk3.ch.intel.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/base/auxiliary.c b/drivers/base/auxiliary.c index d8b314e..adc199d 100644 --- a/drivers/base/auxiliary.c +++ b/drivers/base/auxiliary.c @@ -265,8 +265,3 @@ void __init auxiliary_bus_init(void) { WARN_ON(bus_register(&auxiliary_bus_type)); } - -MODULE_LICENSE("GPL v2"); -MODULE_DESCRIPTION("Auxiliary Bus"); -MODULE_AUTHOR("David Ertman "); -MODULE_AUTHOR("Kiran Patil ");