]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
phy: exynos-mipi-video: Fix phy_power_off() callback
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Wed, 16 Oct 2013 17:03:45 +0000 (19:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 20 Oct 2013 02:55:43 +0000 (19:55 -0700)
Fix argument passed to the register setup helper function so
the phy is actually disabled. Now due to cut&paste error 1 is
passed to both phy_power_on() and phy_power_off().

Reported by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Reviewed-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/phy/phy-exynos-mipi-video.c

index b73b86ab4697d2f032cb8fa1f39104e3ad1a1066..0c5efab11af18a5b2b7367014747e0b34984b585 100644 (file)
@@ -93,7 +93,7 @@ static int exynos_mipi_video_phy_power_off(struct phy *phy)
        struct video_phy_desc *phy_desc = phy_get_drvdata(phy);
        struct exynos_mipi_video_phy *state = to_mipi_video_phy(phy_desc);
 
-       return __set_phy_state(state, phy_desc->index, 1);
+       return __set_phy_state(state, phy_desc->index, 0);
 }
 
 static struct phy *exynos_mipi_video_phy_xlate(struct device *dev,