From: Thierry Reding Date: Fri, 14 Mar 2014 13:19:17 +0000 (+0100) Subject: drm/tegra: dsi - Fix typo when disabling controller X-Git-Tag: next-20140428~43^2~6 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=65e2819ee3de6d81e2974eb72e8ec60f6f15deb2;p=karo-tx-linux.git drm/tegra: dsi - Fix typo when disabling controller When disabling the DSI controller, the code wasn't really doing what it was supposed to. Signed-off-by: Thierry Reding --- diff --git a/drivers/gpu/drm/tegra/dsi.c b/drivers/gpu/drm/tegra/dsi.c index 4c35d9b0c9c8..55ac86faec60 100644 --- a/drivers/gpu/drm/tegra/dsi.c +++ b/drivers/gpu/drm/tegra/dsi.c @@ -550,7 +550,7 @@ static int tegra_output_dsi_disable(struct tegra_output *output) /* disable DSI controller */ value = tegra_dsi_readl(dsi, DSI_POWER_CONTROL); - value &= DSI_POWER_CONTROL_ENABLE; + value &= ~DSI_POWER_CONTROL_ENABLE; tegra_dsi_writel(dsi, value, DSI_POWER_CONTROL); /*