diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2009-09-17 12:43:44 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2009-09-17 14:20:37 -0300 |
commit | d96238b1773dabfdf3d6ea6ad7a2852d153416d4 (patch) | |
tree | dab3b19d6eed2a3c27529825d24d2908c140cf6b /recipes/xorg-driver/xf86-video-geode/0002-GX-fix-RandR-to-properly-use-dixSetPrivate.patch | |
parent | 7daf6b3e17b866ab2ca38b2c64d7722b4498a09a (diff) |
xf86-video-geode: update to 2.11.4.1
Since it is a bugfix release we updated from 2.11.2 to 2.11.4.1 and
also set this as preferred version for the distros using the upcoming
Xorg 7.5 release or the 7.4 (updates).
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes/xorg-driver/xf86-video-geode/0002-GX-fix-RandR-to-properly-use-dixSetPrivate.patch')
-rw-r--r-- | recipes/xorg-driver/xf86-video-geode/0002-GX-fix-RandR-to-properly-use-dixSetPrivate.patch | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/recipes/xorg-driver/xf86-video-geode/0002-GX-fix-RandR-to-properly-use-dixSetPrivate.patch b/recipes/xorg-driver/xf86-video-geode/0002-GX-fix-RandR-to-properly-use-dixSetPrivate.patch deleted file mode 100644 index 7408473063..0000000000 --- a/recipes/xorg-driver/xf86-video-geode/0002-GX-fix-RandR-to-properly-use-dixSetPrivate.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 312b5ad7a3e1f92abaa113c3e72c8da5cb3e6cb0 Mon Sep 17 00:00:00 2001 -From: Otavio Salvador <otavio@ossystems.com.br> -Date: Fri, 22 May 2009 20:40:16 -0300 -Subject: [PATCH 2/2] [GX] fix RandR to properly use dixSetPrivate - -Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> ---- - src/gx_randr.c | 13 +++---------- - 1 files changed, 3 insertions(+), 10 deletions(-) - -diff --git a/src/gx_randr.c b/src/gx_randr.c -index 6cdd244..68e1dbd 100644 ---- a/src/gx_randr.c -+++ b/src/gx_randr.c -@@ -57,18 +57,13 @@ typedef struct _GXRandRInfo - - #define AMD_OLDPRIV (GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 4) - --#if AMD_OLDPRIV -- - static int GXRandRIndex; - -+#if AMD_OLDPRIV - #define XF86RANDRINFO(p) ((XF86RandRInfoPtr) (p)->devPrivates[GXRandRIndex].ptr) - #else -- --static DevPrivateKey GXRandRKey; -- - #define XF86RANDRINFO(p) ((XF86RandRInfoPtr) \ -- dixLookupPrivate(&(p)->devPrivates, GXRandRKey)); -- -+ dixLookupPrivate(&(p)->devPrivates, GXRandRIndex)); - #endif - - static int -@@ -333,8 +328,6 @@ GXRandRInit(ScreenPtr pScreen, int rotation) - } - #if AMD_OLDPRIV - GXRandRIndex = AllocateScreenPrivateIndex(); --#else -- GXRandRKey = &GXRandRKey; - #endif - - pRandr = xcalloc(sizeof(XF86RandRInfoRec), 1); -@@ -363,7 +356,7 @@ GXRandRInit(ScreenPtr pScreen, int rotation) - #if AMD_OLDPRIV - pScreen->devPrivates[GXRandRIndex].ptr = pRandr; - #else -- dixSetPrivate(&pScreen->devPrivates, GXRandRKey, pRandr); -+ dixSetPrivate(&pScreen->devPrivates, &GXRandRIndex, pRandr); - #endif - return TRUE; - } --- -1.6.3.1.54.g99dd - |