]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
phy: core: Remove extra space after '='
authorClaudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Mon, 17 Nov 2025 10:34:22 +0000 (12:34 +0200)
committerVinod Koul <vkoul@kernel.org>
Tue, 18 Nov 2025 16:58:34 +0000 (22:28 +0530)
Remove extra space after '=' to comply with coding style.

Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/phy-core.c

index 60be8af984bf06649ef00e695d0ed4ced597cdb9..8d227890a345fd1e3e08e32300df5de8b745aaec 100644 (file)
@@ -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);