diff options
author | 2025-05-16 18:23:26 +0800 | |
---|---|---|
committer | 2025-05-20 18:11:04 -0700 | |
commit | 6d243c80fe9178878f4924804d35f1ed24f590cb (patch) | |
tree | e22c5e3670d49d9d958b0c0f24ad4d647fa1b093 | |
parent | sctp: Do not wake readers in __sctp_write_space() (diff) | |
download | wireguard-linux-6d243c80fe9178878f4924804d35f1ed24f590cb.tar.xz wireguard-linux-6d243c80fe9178878f4924804d35f1ed24f590cb.zip |
net: phy: mediatek: Sort config and file names in Kconfig and Makefile
Sort config and file names in Kconfig and Makefile in
drivers/net/phy/mediatek/ in alphabetical order.
Signed-off-by: Sky Huang <skylake.huang@mediatek.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://patch.msgid.link/20250516102327.2014531-2-SkyLake.Huang@mediatek.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | drivers/net/phy/mediatek/Kconfig | 6 | ||||
-rw-r--r-- | drivers/net/phy/mediatek/Makefile | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/phy/mediatek/Kconfig b/drivers/net/phy/mediatek/Kconfig index 4308002bb82c..f879925b30ce 100644 --- a/drivers/net/phy/mediatek/Kconfig +++ b/drivers/net/phy/mediatek/Kconfig @@ -1,7 +1,4 @@ # SPDX-License-Identifier: GPL-2.0-only -config MTK_NET_PHYLIB - tristate - config MEDIATEK_GE_PHY tristate "MediaTek Gigabit Ethernet PHYs" select MTK_NET_PHYLIB @@ -26,3 +23,6 @@ config MEDIATEK_GE_SOC_PHY the MT7981 and MT7988 SoCs. These PHYs need calibration data present in the SoCs efuse and will dynamically calibrate VCM (common-mode voltage) during startup. + +config MTK_NET_PHYLIB + tristate diff --git a/drivers/net/phy/mediatek/Makefile b/drivers/net/phy/mediatek/Makefile index 814879d0abe5..14b2c17b3f8f 100644 --- a/drivers/net/phy/mediatek/Makefile +++ b/drivers/net/phy/mediatek/Makefile @@ -1,4 +1,4 @@ # SPDX-License-Identifier: GPL-2.0 -obj-$(CONFIG_MTK_NET_PHYLIB) += mtk-phy-lib.o obj-$(CONFIG_MEDIATEK_GE_PHY) += mtk-ge.o obj-$(CONFIG_MEDIATEK_GE_SOC_PHY) += mtk-ge-soc.o +obj-$(CONFIG_MTK_NET_PHYLIB) += mtk-phy-lib.o |