summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-driver/xf86-video-omapfb
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2015-07-10 15:26:35 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-11 09:28:51 -0700
commit5b1d7ca8543adc203fc9ea9c79237debb34ca481 (patch)
tree093a506d2ae527a80d2d3ae5b44384089fc28155 /meta/recipes-graphics/xorg-driver/xf86-video-omapfb
parentb638fb2fdb60b0c5d71f3307cf19cd4b3d0d0217 (diff)
downloadpoky-5b1d7ca8543adc203fc9ea9c79237debb34ca481.tar.gz
xf86-video-omapfb: switch SRC_URI to debian git repo
The previous upstream is no longer available. Debian git repository is one commit behind the original repository, so that commit is added as a patch. (From OE-Core rev: e7601797f2dee95f6658962f9aae4d9fb8d0689d) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-driver/xf86-video-omapfb')
-rw-r--r--meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0001-Prevents-omapfb-from-from-crashing-when-pixelclock-o.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0001-Prevents-omapfb-from-from-crashing-when-pixelclock-o.patch b/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0001-Prevents-omapfb-from-from-crashing-when-pixelclock-o.patch
new file mode 100644
index 0000000000..c4cf16eb05
--- /dev/null
+++ b/meta/recipes-graphics/xorg-driver/xf86-video-omapfb/0001-Prevents-omapfb-from-from-crashing-when-pixelclock-o.patch
@@ -0,0 +1,35 @@
1From 28c006c94e57ea71df11ec4fff79d7ffcfc4860f Mon Sep 17 00:00:00 2001
2From: Far McKon <FarMcKon@buglabs.net>
3Date: Tue, 3 May 2011 20:59:04 +0300
4Subject: [PATCH] Prevents omapfb from from crashing when pixelclock of 0 is
5 sent to it.
6
7Due to a Linux design bug it is easy to get a pixelclock set to zero
8when changing displays at runtime.
9---
10 src/omapfb-output.c | 9 +++++++--
11 1 file changed, 7 insertions(+), 2 deletions(-)
12
13diff --git a/src/omapfb-output.c b/src/omapfb-output.c
14index f8b4db3..4d59265 100644
15--- a/src/omapfb-output.c
16+++ b/src/omapfb-output.c
17@@ -125,8 +125,13 @@ OMAPFBOutputGetModes(xf86OutputPtr output)
18 /* Only populate the native (current) mode */
19 mode = calloc(1, sizeof(DisplayModeRec));
20 mode->type |= M_T_PREFERRED;
21- mode->Clock = PICOS2KHZ(ofb->state_info.pixclock);
22- mode->SynthClock = PICOS2KHZ(ofb->state_info.pixclock);
23+ if (ofb->state_info.pixclock == 0) {
24+ mode->Clock = 0;
25+ mode->SynthClock = 0;
26+ } else {
27+ mode->Clock = PICOS2KHZ(ofb->state_info.pixclock);
28+ mode->SynthClock = PICOS2KHZ(ofb->state_info.pixclock);
29+ }
30 mode->HDisplay = ofb->state_info.xres;
31 mode->HSyncStart = mode->HDisplay
32 + ofb->state_info.right_margin;
33--
342.1.4
35