• Paul Gortmaker's avatar
    phy: make phy-core explicitly non-modular · cc013c28
    Paul Gortmaker authored
    The Kconfig currently controlling compilation of this code is:
    
    drivers/phy/Kconfig:config GENERIC_PHY
    drivers/phy/Kconfig:    bool "PHY Core"
    
    ...meaning that it currently is not being built as a module by anyone.
    
    Lets remove the modular code that is essentially orphaned, 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 remove module.h since the file is using other modular fcns
    (to load other phy modules) even though the core support itself is
    non-modular.
    
    We also delete the MODULE_LICENSE tag etc. since all that information
    is already contained at the top of the file in the comments.
    
    Cc: Kishon Vijay Abraham I <kishon@ti.com>
    Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
    Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
    cc013c28
phy-core.c 26.2 KB