summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-revert-set-CRTC-limit.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-22 07:26:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-11-22 07:53:02 +0000
commita01737e4b23599082b7eb16cd9f009b0157c2907 (patch)
tree0ee425986b09459de785950398a579e3c3d419df /meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-revert-set-CRTC-limit.patch
parent8043f458f52f28c414472764a664c31e2a62facf (diff)
downloadpoky-a01737e4b23599082b7eb16cd9f009b0157c2907.tar.gz
xf86-video-omapfb: drop
This driver has been superceeded by a dri omap driver. This driver no longer builds against current versions of the xserver. If someone wants to do the work to resurect it, that is fine but until that happens there is no point in keeping broken code in the tree which won't even compile. It can be easily brought back from git history. (From OE-Core rev: 75858ad8cb19ee24f2c418515cb9d2b649a4de46) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-revert-set-CRTC-limit.patch')
-rw-r--r--meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-revert-set-CRTC-limit.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-revert-set-CRTC-limit.patch b/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-revert-set-CRTC-limit.patch
deleted file mode 100644
index 97bf022ab0..0000000000
--- a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/omap-revert-set-CRTC-limit.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1commit 031516123d25a12808ab4e56ea8deda74946cdcd
2Author: Koen Kooi <koen@dominion.thruhere.net>
3Date: Wed Jan 26 12:04:36 2011 +0100
4
5 Revert "Set a large CRTC upper limit to not prune larger resolutions"
6
7 Picture is garbled after switching resolutions, so revert it.
8
9 Virtual size too big, revert the commit 9c4d7592dcb7dc20a48a6f941d9d94bd73d34153.
10
11 Upstream-Status: Pending
12
13diff --git a/src/omapfb-crtc.c b/src/omapfb-crtc.c
14index 9aaa52f..cbeff35 100644
15--- a/src/omapfb-crtc.c
16+++ b/src/omapfb-crtc.c
17@@ -190,13 +190,13 @@ OMAPFBCRTCInit(ScrnInfoPtr pScrn)
18 * In practise, this doesn't seem to be supported.
19 * (no way to setup the overlay offset/base address)
20 */
21- /* FIXME: figure out what makes sense here. A known max resolution?
22- * framebuffer size?
23- */
24 xf86CrtcSetSizeRange(pScrn,
25- 8, 8, 2048, 2048);
26+ 8, 8,
27+ ofb->state_info.xres_virtual,
28+ ofb->state_info.yres_virtual);
29
30 ofb->crtc = xf86CrtcCreate(pScrn, &OMAPFBCrtcFuncs);
31+
32 }
33
34