• Paul Gortmaker's avatar
    cxl: make base more explicitly non-modular · e00878be
    Paul Gortmaker authored
    The Kconfig/Makefile currently controlling compilation of this code is:
    
    drivers/misc/cxl/Kconfig:config CXL_BASE
    drivers/misc/cxl/Kconfig:       bool
    
    drivers/misc/cxl/Makefile:obj-$(CONFIG_CXL_BASE)          += base.o
    
    ...meaning that it currently is not being built as a module by anyone.
    
    Lets convert the one module_init into device_initcall so that
    when reading the driver it more clear that 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 replace module.h with init.h since the file is doing
    other modular stuff (module_get/put) even though it is built-in.
    
    Cc: Ian Munsie <imunsie@au1.ibm.com>
    Cc: Michael Neuling <mikey@neuling.org>
    Cc: linuxppc-dev@lists.ozlabs.org
    Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
    Acked-by: default avatarIan Munsie <imunsie@au1.ibm.com>
    Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
    e00878be
base.c 2.42 KB