Skip to content
Snippets Groups Projects
Commit a24df045 authored by David Bauer's avatar David Bauer
Browse files

generic: ar8216: fix kernel 5.10 compile error

parent b10d6044
No related branches found
No related tags found
No related merge requests found
...@@ -891,7 +891,11 @@ ar8216_phy_write(struct ar8xxx_priv *priv, int addr, int regnum, u16 val) ...@@ -891,7 +891,11 @@ ar8216_phy_write(struct ar8xxx_priv *priv, int addr, int regnum, u16 val)
static int static int
ar8229_hw_init(struct ar8xxx_priv *priv) ar8229_hw_init(struct ar8xxx_priv *priv)
{ {
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)
phy_interface_t phy_if_mode;
#else
int phy_if_mode; int phy_if_mode;
#endif
if (priv->initialized) if (priv->initialized)
return 0; return 0;
...@@ -899,7 +903,11 @@ ar8229_hw_init(struct ar8xxx_priv *priv) ...@@ -899,7 +903,11 @@ ar8229_hw_init(struct ar8xxx_priv *priv)
ar8xxx_write(priv, AR8216_REG_CTRL, AR8216_CTRL_RESET); ar8xxx_write(priv, AR8216_REG_CTRL, AR8216_CTRL_RESET);
ar8xxx_reg_wait(priv, AR8216_REG_CTRL, AR8216_CTRL_RESET, 0, 1000); ar8xxx_reg_wait(priv, AR8216_REG_CTRL, AR8216_CTRL_RESET, 0, 1000);
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)
of_get_phy_mode(priv->pdev->of_node, &phy_if_mode);
#else
phy_if_mode = of_get_phy_mode(priv->pdev->of_node); phy_if_mode = of_get_phy_mode(priv->pdev->of_node);
#endif
if (phy_if_mode == PHY_INTERFACE_MODE_GMII) { if (phy_if_mode == PHY_INTERFACE_MODE_GMII) {
ar8xxx_write(priv, AR8229_REG_OPER_MODE0, ar8xxx_write(priv, AR8229_REG_OPER_MODE0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment