]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: dwc_eth_qos: Rename eqos_stm32_config to eqos_stm32mp15_config
authorMarek Vasut <marex@denx.de>
Tue, 26 Mar 2024 12:07:23 +0000 (13:07 +0100)
committerPatrice Chotard <patrice.chotard@foss.st.com>
Fri, 19 Apr 2024 09:30:50 +0000 (11:30 +0200)
The current glue code is specific to STM32MP15xx, the upcoming STM32MP13xx
will introduce another entry specific to the STM32MP13xx. Rename the current
entry to eqos_stm32mp15_config in preparation for STM32MP13xx addition. No
functional change.

Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Christophe ROULLIER <christophe.roullier@foss.st.com>
drivers/net/dwc_eth_qos.c
drivers/net/dwc_eth_qos.h
drivers/net/dwc_eth_qos_stm32.c

index aa4f815eb41fd41e429064679fb39ff13cd7053d..8d106ec0d0d69553914db545d9553d3233293f9a 100644 (file)
@@ -1507,7 +1507,7 @@ static const struct udevice_id eqos_ids[] = {
 #if IS_ENABLED(CONFIG_DWC_ETH_QOS_STM32)
        {
                .compatible = "st,stm32mp1-dwmac",
-               .data = (ulong)&eqos_stm32_config
+               .data = (ulong)&eqos_stm32mp15_config
        },
 #endif
 #if IS_ENABLED(CONFIG_DWC_ETH_QOS_IMX)
index a6087f191ab8ef589c23b2099edbf405e9d30834..bafd0d339fb9709ec370ac5ae2c07316056ebd6f 100644 (file)
@@ -290,5 +290,5 @@ int eqos_null_ops(struct udevice *dev);
 extern struct eqos_config eqos_imx_config;
 extern struct eqos_config eqos_rockchip_config;
 extern struct eqos_config eqos_qcom_config;
-extern struct eqos_config eqos_stm32_config;
+extern struct eqos_config eqos_stm32mp15_config;
 extern struct eqos_config eqos_jh7110_config;
index cfda757133eeea81232b63778907eb325ccaf0f9..fd29a604987cc317b45e73892a72df2d9a8e4ae0 100644 (file)
@@ -184,7 +184,7 @@ static struct eqos_ops eqos_stm32_ops = {
        .eqos_get_tick_clk_rate = eqos_get_tick_clk_rate_stm32
 };
 
-struct eqos_config __maybe_unused eqos_stm32_config = {
+struct eqos_config __maybe_unused eqos_stm32mp15_config = {
        .reg_access_always_ok = false,
        .mdio_wait = 10000,
        .swr_wait = 50,