summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch')
-rw-r--r--meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch b/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch
deleted file mode 100644
index 9b1ee06ece..0000000000
--- a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-blacklist-tv-out.patch
+++ /dev/null
@@ -1,27 +0,0 @@
1commit 05efb061f1945425d214ff6b6050883e6d8633bf
2Author: Koen Kooi <koen@dominion.thruhere.net>
3Date: Wed Jan 26 13:21:12 2011 +0100
4
5 blacklist tv out
6
7 The tv-out gets added last and the driver tries to reconfigure dvi to TV resolutions, which fails. so blacklist it
8
9 Upstream-Status: Pending
10
11 Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
12
13diff --git a/src/omapfb-output-dss.c b/src/omapfb-output-dss.c
14index 6cc52de..83cb711 100644
15--- a/src/omapfb-output-dss.c
16+++ b/src/omapfb-output-dss.c
17@@ -205,6 +205,10 @@ OMAPFBDSSOutputDetect (xf86OutputPtr output)
18 if(ofb->timings[idx][0] == '\0')
19 return XF86OutputStatusDisconnected;
20
21+ // Hack to disable the tv out
22+ if (strncmp(output->name, "tv", 2) == 0)
23+ return XF86OutputStatusDisconnected;
24+
25 return XF86OutputStatusConnected;
26 }
27