Skip to content

Commit 5476012

Browse files
claudiubezneavinodkoul
authored andcommitted
phy: core: Remove extra space after '='
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>
1 parent 58e0f98 commit 5476012

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/phy/phy-core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ int phy_power_off(struct phy *phy)
361361

362362
mutex_lock(&phy->mutex);
363363
if (phy->power_count == 1 && phy->ops->power_off) {
364-
ret = phy->ops->power_off(phy);
364+
ret = phy->ops->power_off(phy);
365365
if (ret < 0) {
366366
dev_err(&phy->dev, "phy poweroff failed --> %d\n", ret);
367367
mutex_unlock(&phy->mutex);

0 commit comments

Comments
 (0)