From: Claudiu Beznea Date: Mon, 17 Nov 2025 10:34:22 +0000 (+0200) Subject: phy: core: Remove extra space after '=' X-Git-Tag: v6.19-rc1~55^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54760125b026f25d329158ffb5f5569c8efcea93;p=thirdparty%2Flinux.git phy: core: Remove extra space after '=' Remove extra space after '=' to comply with coding style. Signed-off-by: Claudiu Beznea Reviewed-by: Neil Armstrong Signed-off-by: Vinod Koul --- diff --git a/drivers/phy/phy-core.c b/drivers/phy/phy-core.c index 60be8af984bf0..8d227890a345f 100644 --- a/drivers/phy/phy-core.c +++ b/drivers/phy/phy-core.c @@ -361,7 +361,7 @@ int phy_power_off(struct phy *phy) mutex_lock(&phy->mutex); if (phy->power_count == 1 && phy->ops->power_off) { - ret = phy->ops->power_off(phy); + ret = phy->ops->power_off(phy); if (ret < 0) { dev_err(&phy->dev, "phy poweroff failed --> %d\n", ret); mutex_unlock(&phy->mutex);