summaryrefslogtreecommitdiff
path: root/libre/linux-libre/i915-fix-ghost-tv-output.patch
diff options
context:
space:
mode:
authorShackra Sislock <none@none>2012-08-05 12:42:52 -0600
committerShackra Sislock <none@none>2012-08-05 12:42:52 -0600
commit0b2879add9c1697b64ee3187d74476731626fe64 (patch)
tree0758b2f3da21a10cf40998a00738dd620b51b3a5 /libre/linux-libre/i915-fix-ghost-tv-output.patch
parent5d9bdbea7dba62f2382a396206e98a865af97dd9 (diff)
parentbca4f0908b1c82eccaf81bb0cb137f8597ec90a1 (diff)
adding: yate and pysfml2-git
Diffstat (limited to 'libre/linux-libre/i915-fix-ghost-tv-output.patch')
-rw-r--r--libre/linux-libre/i915-fix-ghost-tv-output.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/libre/linux-libre/i915-fix-ghost-tv-output.patch b/libre/linux-libre/i915-fix-ghost-tv-output.patch
deleted file mode 100644
index 3b631361a..000000000
--- a/libre/linux-libre/i915-fix-ghost-tv-output.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
-Tested-by: Santi <santi@agolina.net>
----
- drivers/gpu/drm/i915/intel_tv.c | 9 +++++++++
- 1 files changed, 9 insertions(+), 0 deletions(-)
-
-diff --git a/drivers/gpu/drm/i915/intel_tv.c b/drivers/gpu/drm/i915/intel_tv.c
-index dc83b7a..c8f67bf 100644
---- a/drivers/gpu/drm/i915/intel_tv.c
-+++ b/drivers/gpu/drm/i915/intel_tv.c
-@@ -1267,6 +1267,15 @@
- DAC_B_0_7_V |
- DAC_C_0_7_V);
-
-+ /*
-+ * The TV sense state should be cleared to zero on cantiga platform. Otherwise
-+ * the TV is misdetected. This is hardware requirement.
-+ */
-+ if (IS_GM45(dev))
-+ tv_dac &= ~(TVDAC_STATE_CHG_EN | TVDAC_A_SENSE_CTL |
-+ TVDAC_B_SENSE_CTL | TVDAC_C_SENSE_CTL);
-+
-+
- I915_WRITE(TV_CTL, tv_ctl);
- I915_WRITE(TV_DAC, tv_dac);
- POSTING_READ(TV_DAC);