Skip to content
  • Paul Gortmaker's avatar
    drivers/tty: make serial/suncore.c driver explicitly non-modular · 37db2234
    Paul Gortmaker authored
    
    
    The Kconfig for this driver is currently:
    
    config SERIAL_SUNCORE
            bool
    
    ...meaning that it currently is not being built as a module by
    anyone.  Lets remove the modular and unused code here, so that
    when reading the driver there is no doubt it is builtin-only.
    
    Since module_init translates to device_initcall in the non-modular
    case, the init ordering remains unchanged with this commit.
    
    We don't swap module.h for init.h since this file has init.h already.
    
    We leave some tags like MODULE_LICENSE for documentation purposes, and
    for the "git blame" value.
    
    Cc: "David S. Miller" <davem@davemloft.net>
    Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Cc: Jiri Slaby <jslaby@suse.com>
    Cc: sparclinux@vger.kernel.org
    Cc: linux-serial@vger.kernel.org
    Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
    Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
    37db2234