drm/tegra: sor - Remove obsolete comment
authorThierry Reding <treding@nvidia.com>
Thu, 5 Jun 2014 14:20:27 +0000 (16:20 +0200)
committerThierry Reding <treding@nvidia.com>
Mon, 9 Jun 2014 10:02:51 +0000 (12:02 +0200)
According to the DP specification the disparity of the first symbol
should always be negative. It is therefore safe to assume that panels
will conform to that and therefore parameterizing this field should
never be necessary.

Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/tegra/sor.c

index 7d2a5db..27c979b 100644 (file)
@@ -713,7 +713,7 @@ static int tegra_output_sor_enable(struct tegra_output *output)
                value &= ~SOR_DP_CONFIG_ACTIVE_SYM_POLARITY;
 
        value |= SOR_DP_CONFIG_ACTIVE_SYM_ENABLE;
-       value |= SOR_DP_CONFIG_DISPARITY_NEGATIVE; /* XXX: don't hardcode? */
+       value |= SOR_DP_CONFIG_DISPARITY_NEGATIVE;
        tegra_sor_writel(sor, value, SOR_DP_CONFIG_0);
 
        value = tegra_sor_readl(sor, SOR_DP_AUDIO_HBLANK_SYMBOLS);