mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 01:59:54 -04:00
ethernet: stmmac: dwmac-rk: Fix typo for RK3588 code
Fix SELET -> SELECT in RK3588_GMAC_CLK_SELET_CRU and RK3588_GMAC_CLK_SELET_IO Signed-off-by: Detlev Casanova <detlev.casanova@collabora.com> Reviewed-by: Heiko Stuebner <heiko@sntech.de> Link: https://patch.msgid.link/20240823141318.51201-2-detlev.casanova@collabora.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
3333df3b4b
commit
78a60497a0
@@ -1141,8 +1141,8 @@ static const struct rk_gmac_ops rk3568_ops = {
|
||||
#define RK3588_GMAC_CLK_RMII_MODE(id) GRF_BIT(5 * (id))
|
||||
#define RK3588_GMAC_CLK_RGMII_MODE(id) GRF_CLR_BIT(5 * (id))
|
||||
|
||||
#define RK3588_GMAC_CLK_SELET_CRU(id) GRF_BIT(5 * (id) + 4)
|
||||
#define RK3588_GMAC_CLK_SELET_IO(id) GRF_CLR_BIT(5 * (id) + 4)
|
||||
#define RK3588_GMAC_CLK_SELECT_CRU(id) GRF_BIT(5 * (id) + 4)
|
||||
#define RK3588_GMAC_CLK_SELECT_IO(id) GRF_CLR_BIT(5 * (id) + 4)
|
||||
|
||||
#define RK3588_GMA_CLK_RMII_DIV2(id) GRF_BIT(5 * (id) + 2)
|
||||
#define RK3588_GMA_CLK_RMII_DIV20(id) GRF_CLR_BIT(5 * (id) + 2)
|
||||
@@ -1240,8 +1240,8 @@ static void rk3588_set_gmac_speed(struct rk_priv_data *bsp_priv, int speed)
|
||||
static void rk3588_set_clock_selection(struct rk_priv_data *bsp_priv, bool input,
|
||||
bool enable)
|
||||
{
|
||||
unsigned int val = input ? RK3588_GMAC_CLK_SELET_IO(bsp_priv->id) :
|
||||
RK3588_GMAC_CLK_SELET_CRU(bsp_priv->id);
|
||||
unsigned int val = input ? RK3588_GMAC_CLK_SELECT_IO(bsp_priv->id) :
|
||||
RK3588_GMAC_CLK_SELECT_CRU(bsp_priv->id);
|
||||
|
||||
val |= enable ? RK3588_GMAC_CLK_RMII_NOGATE(bsp_priv->id) :
|
||||
RK3588_GMAC_CLK_RMII_GATE(bsp_priv->id);
|
||||
|
||||
Reference in New Issue
Block a user