From: Marek Szyprowski Date: Wed, 20 Jul 2016 10:50:47 +0000 (+0200) Subject: phy: exynos-mipi-video: simplify check for coupled phy status X-Git-Tag: submit/tizen/20160810.050017~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=42db533c89ee80ed45ca9a03c2b68b2688ec005f;p=platform%2Fkernel%2Flinux-exynos.git phy: exynos-mipi-video: simplify check for coupled phy status There is no need to access regmap of coupled phy to check its state - such information is already in the phy device itself, so use it directly. This let us to avoid possible access to registers of the device in the disabled power domain if the coupled phy is already disabled. Signed-off-by: Marek Szyprowski Change-Id: If375eab85e6ec680e856a9eeafdf24823e8adb6e --- diff --git a/drivers/phy/phy-exynos-mipi-video.c b/drivers/phy/phy-exynos-mipi-video.c index 0bf1be22a913..3f264142583d 100644 --- a/drivers/phy/phy-exynos-mipi-video.c +++ b/drivers/phy/phy-exynos-mipi-video.c @@ -67,14 +67,6 @@ struct exynos_mipi_phy { } phys[EXYNOS_MIPI_PHYS_NUM]; }; -static int __is_running(const struct exynos_mipi_phy_desc *data, - struct exynos_mipi_phy *state) -{ - u32 val; - regmap_read(state->regmaps[data->reset_map], data->reset_reg, &val); - return val & data->reset_val; -} - static int __set_phy_state(const struct exynos_mipi_phy_desc *data, struct exynos_mipi_phy *state, unsigned int on) { @@ -84,7 +76,7 @@ static int __set_phy_state(const struct exynos_mipi_phy_desc *data, /* PHY PMU disable */ if (!on && data->coupled_id >= 0 && - !__is_running(state->phys[data->coupled_id].data, state)) { + state->phys[data->coupled_id].phy->power_count == 0) { regmap_read(state->regmaps[data->enable_map], data->enable_reg, &val); val &= ~data->enable_val;