Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

phy: intel: Rename phy-intel to phy-intel-lgm

Rename phy-intel-{combo,emmc}.c to phy-intel-lgm-{combo,emmc}.c
to make drivers/phy/intel directory more generic for future use.

Signed-off-by: Wan Ahmad Zainie <wan.ahmad.zainie.wan.mohamad@intel.com>
Reviewed-by: Ramuthevar Vadivel Murugan <vadivel.muruganx.ramuthevar@linux.intel.com>
Link: https://lore.kernel.org/r/20200913235522.4316-2-wan.ahmad.zainie.wan.mohamad@intel.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Wan Ahmad Zainie and committed by
Vinod Koul
fa687038 57d39c76

+7 -7
+5 -5
drivers/phy/intel/Kconfig
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 2 # 3 - # Phy drivers for Intel Lightning Mountain(LGM) platform 3 + # Phy drivers for Intel platforms 4 4 # 5 - config PHY_INTEL_COMBO 6 - bool "Intel ComboPHY driver" 5 + config PHY_INTEL_LGM_COMBO 6 + bool "Intel Lightning Mountain ComboPHY driver" 7 7 depends on X86 || COMPILE_TEST 8 8 depends on OF && HAS_IOMEM 9 9 select MFD_SYSCON ··· 16 16 chipsets which provides PHYs for various controllers, EMAC, 17 17 SATA and PCIe. 18 18 19 - config PHY_INTEL_EMMC 20 - tristate "Intel EMMC PHY driver" 19 + config PHY_INTEL_LGM_EMMC 20 + tristate "Intel Lightning Mountain EMMC PHY driver" 21 21 depends on X86 || COMPILE_TEST 22 22 select GENERIC_PHY 23 23 help
+2 -2
drivers/phy/intel/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 - obj-$(CONFIG_PHY_INTEL_COMBO) += phy-intel-combo.o 3 - obj-$(CONFIG_PHY_INTEL_EMMC) += phy-intel-emmc.o 2 + obj-$(CONFIG_PHY_INTEL_LGM_COMBO) += phy-intel-lgm-combo.o 3 + obj-$(CONFIG_PHY_INTEL_LGM_EMMC) += phy-intel-lgm-emmc.o
drivers/phy/intel/phy-intel-combo.c drivers/phy/intel/phy-intel-lgm-combo.c
drivers/phy/intel/phy-intel-emmc.c drivers/phy/intel/phy-intel-lgm-emmc.c