lkml.org 
[lkml]   [2021]   [Sep]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH AUTOSEL 5.10 010/176] net: phy: Fix data type in DP83822 dp8382x_disable_wol()
    Date
    From: Marek Vasut <marex@denx.de>

    [ Upstream commit 0d6835ffe50c9c1f098b5704394331710b67af48 ]

    The last argument of phy_clear_bits_mmd(..., u16 val); is u16 and not
    int, just inline the value into the function call arguments.

    No functional change.

    Signed-off-by: Marek Vasut <marex@denx.de>
    Cc: Andrew Lunn <andrew@lunn.ch>
    Cc: Florian Fainelli <f.fainelli@gmail.com>
    Cc: David S. Miller <davem@davemloft.net>
    Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
    Reviewed-by: Andrew Lunn <andrew@lunn.ch>
    Signed-off-by: David S. Miller <davem@davemloft.net>
    Signed-off-by: Sasha Levin <sashal@kernel.org>
    ---
    drivers/net/phy/dp83822.c | 8 +++-----
    1 file changed, 3 insertions(+), 5 deletions(-)

    diff --git a/drivers/net/phy/dp83822.c b/drivers/net/phy/dp83822.c
    index a9b058bb1be8..7bf43031cea8 100644
    --- a/drivers/net/phy/dp83822.c
    +++ b/drivers/net/phy/dp83822.c
    @@ -305,11 +305,9 @@ static int dp83822_config_intr(struct phy_device *phydev)

    static int dp8382x_disable_wol(struct phy_device *phydev)
    {
    - int value = DP83822_WOL_EN | DP83822_WOL_MAGIC_EN |
    - DP83822_WOL_SECURE_ON;
    -
    - return phy_clear_bits_mmd(phydev, DP83822_DEVADDR,
    - MII_DP83822_WOL_CFG, value);
    + return phy_clear_bits_mmd(phydev, DP83822_DEVADDR, MII_DP83822_WOL_CFG,
    + DP83822_WOL_EN | DP83822_WOL_MAGIC_EN |
    + DP83822_WOL_SECURE_ON);
    }

    static int dp83822_read_status(struct phy_device *phydev)
    --
    2.30.2
    \
     
     \ /
      Last update: 2021-09-09 14:37    [W:2.656 / U:0.360 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site