]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
MIPS: Octeon: Remove unnecessary MODULE_*()
authorRussell King <rmk+kernel@armlinux.org.uk>
Tue, 7 Feb 2017 23:03:02 +0000 (15:03 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 10 Feb 2017 18:51:03 +0000 (13:51 -0500)
octeon-platform.c can not be built as a module for two reasons:

(a) the Makefile doesn't allow it:
    obj-y := cpu.o setup.o octeon-platform.o octeon-irq.o csrc-octeon.o

(b) the multiple *_initcall() statements, each of which are translated
    to a module_init() call when attempting a module build, become
    aliases to init_module().  Having more than one alias will cause a
    build error.

Hence, rather than adding a linux/module.h include, remove the redundant
MODULE_*() from this file.

Acked-by: David Daney <david.daney@cavium.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/mips/cavium-octeon/octeon-platform.c

index 37a932d9148c214e2cb3fe9668af7330f3f8bf52..8297ce714c5e625d1eecd83b38d26f1d4ed656aa 100644 (file)
@@ -1060,7 +1060,3 @@ static int __init octeon_publish_devices(void)
        return of_platform_bus_probe(NULL, octeon_ids, NULL);
 }
 arch_initcall(octeon_publish_devices);
-
-MODULE_AUTHOR("David Daney <ddaney@caviumnetworks.com>");
-MODULE_LICENSE("GPL");
-MODULE_DESCRIPTION("Platform driver for Octeon SOC");