ChangeLog | 20 +++++++++++ configure.ac | 2 - debian/changelog | 9 ++++- debian/control | 2 - src/alp_driver.c | 94 ------------------------------------------------------- src/cir_driver.c | 33 ------------------- src/lg_driver.c | 89 +--------------------------------------------------- 7 files changed, 32 insertions(+), 217 deletions(-)
New commits: commit 54fb225b3486121ae0dba31712f870ec79003cbe Author: Brice Goglin <bgog...@debian.org> Date: Sun Jul 19 23:53:14 2009 +0200 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index 7925bfa..35cf87c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-video-cirrus (1:1.3.1-1) UNRELEASED; urgency=low +xserver-xorg-video-cirrus (1:1.3.1-1) unstable; urgency=low [ Julien Cristau ] * Update debian/copyright from upstream's COPYING. @@ -7,7 +7,7 @@ xserver-xorg-video-cirrus (1:1.3.1-1) UNRELEASED; urgency=low * New upstream release. * Bump Standards-Version to 3.8.2. - -- Brice Goglin <bgog...@debian.org> Sun, 19 Jul 2009 23:51:59 +0200 + -- Brice Goglin <bgog...@debian.org> Sun, 19 Jul 2009 23:52:36 +0200 xserver-xorg-video-cirrus (1:1.3.0-1) unstable; urgency=low commit 63333dab6fe4068b43e145fcc60c09429aa8ed36 Author: Brice Goglin <bgog...@debian.org> Date: Sun Jul 19 23:52:29 2009 +0200 Bump Standards-Version diff --git a/debian/changelog b/debian/changelog index 19a373f..7925bfa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,8 +5,9 @@ xserver-xorg-video-cirrus (1:1.3.1-1) UNRELEASED; urgency=low [ Brice Goglin ] * New upstream release. + * Bump Standards-Version to 3.8.2. - -- Brice Goglin <bgog...@debian.org> Sun, 19 Jul 2009 23:50:20 +0200 + -- Brice Goglin <bgog...@debian.org> Sun, 19 Jul 2009 23:51:59 +0200 xserver-xorg-video-cirrus (1:1.3.0-1) unstable; urgency=low diff --git a/debian/control b/debian/control index 3c19df8..2462f4c 100644 --- a/debian/control +++ b/debian/control @@ -17,7 +17,7 @@ Build-Depends: automake, libtool, xutils-dev -Standards-Version: 3.8.1 +Standards-Version: 3.8.2 Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-cirrus Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-cirrus.git commit e029de457044f2d469fd6be70886805b76341460 Author: Brice Goglin <bgog...@debian.org> Date: Sun Jul 19 23:50:42 2009 +0200 New upstream release diff --git a/ChangeLog b/ChangeLog index 2ccae80..912b6ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +commit ecdf94e86d44bdbeff1bb944fb372da92d2fa907 +Author: Adam Jackson <a...@redhat.com> +Date: Thu Jul 2 10:28:20 2009 -0400 + + cirrus 1.3.1 + +commit 2939b59585d96bb9b6f852ddb1eaa5ffd4df1cfb +Author: Dave Airlie <airl...@redhat.com> +Date: Wed Jun 10 14:16:32 2009 +1000 + + cirrus: add inputstr.h explicitly + + using inputInfo requires inputstr.h this got included by accident before + +commit f07b4a3c5dd3e6834367e223aa454054c34a2ac8 +Author: Adam Jackson <a...@redhat.com> +Date: Thu May 28 14:53:06 2009 -0400 + + Remove useless loader symbol lists. + commit 15b1632d4136d4d20e006626836fb1f73c5a61f7 Author: Alan Coopersmith <alan.coopersm...@sun.com> Date: Thu May 7 06:56:57 2009 -0700 diff --git a/debian/changelog b/debian/changelog index acc0116..19a373f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,12 @@ -xserver-xorg-video-cirrus (1:1.3.0-2) UNRELEASED; urgency=low +xserver-xorg-video-cirrus (1:1.3.1-1) UNRELEASED; urgency=low + [ Julien Cristau ] * Update debian/copyright from upstream's COPYING. - -- Julien Cristau <jcris...@debian.org> Mon, 08 Jun 2009 18:21:18 +0200 + [ Brice Goglin ] + * New upstream release. + + -- Brice Goglin <bgog...@debian.org> Sun, 19 Jul 2009 23:50:20 +0200 xserver-xorg-video-cirrus (1:1.3.0-1) unstable; urgency=low commit ecdf94e86d44bdbeff1bb944fb372da92d2fa907 Author: Adam Jackson <a...@redhat.com> Date: Thu Jul 2 10:28:20 2009 -0400 cirrus 1.3.1 diff --git a/configure.ac b/configure.ac index bc503cb..14b3a6f 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-cirrus], - 1.3.0, + 1.3.1, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-cirrus) commit 2939b59585d96bb9b6f852ddb1eaa5ffd4df1cfb Author: Dave Airlie <airl...@redhat.com> Date: Wed Jun 10 14:16:32 2009 +1000 cirrus: add inputstr.h explicitly using inputInfo requires inputstr.h this got included by accident before diff --git a/src/lg_driver.c b/src/lg_driver.c index c154c8a..2574472 100644 --- a/src/lg_driver.c +++ b/src/lg_driver.c @@ -45,6 +45,9 @@ /* All drivers initialising the SW cursor need this */ #include "mipointer.h" +/* need this for inputInfo */ +#include "inputstr.h" + /* All drivers implementing backing store need this */ #include "mibstore.h" commit f07b4a3c5dd3e6834367e223aa454054c34a2ac8 Author: Adam Jackson <a...@redhat.com> Date: Thu May 28 14:53:06 2009 -0400 Remove useless loader symbol lists. diff --git a/src/alp_driver.c b/src/alp_driver.c index b7be5b2..a14a5e8 100644 --- a/src/alp_driver.c +++ b/src/alp_driver.c @@ -152,86 +152,6 @@ static int gd5446_MaxClocks[] = { 135100, 135100, 85500, 85500, 0 }; static int gd5480_MaxClocks[] = { 135100, 200000, 200000, 135100, 135100 }; static int gd7548_MaxClocks[] = { 80100, 80100, 80100, 80100, 80100 }; -/* - * List of symbols from other modules that this module references. This - * list is used to tell the loader that it is OK for symbols here to be - * unresolved providing that it hasn't been told that they haven't been - * told that they are essential via a call to xf86LoaderReqSymbols() or - * xf86LoaderReqSymLists(). The purpose is this is to avoid warnings about - * unresolved symbols that are not required. - */ - -static const char *vgahwSymbols[] = { - "vgaHWFreeHWRec", - "vgaHWGetHWRec", - "vgaHWGetIOBase", - "vgaHWGetIndex", - "vgaHWHandleColormaps", - "vgaHWInit", - "vgaHWLock", - "vgaHWMapMem", - "vgaHWProtect", - "vgaHWRestore", - "vgaHWSave", - "vgaHWSaveScreen", - "vgaHWSetMmioFuncs", - "vgaHWSetStdFuncs", - "vgaHWUnlock", - NULL -}; - -#ifdef XFree86LOADER -static const char *miscfbSymbols[] = { - "xf1bppScreenInit", - "xf4bppScreenInit", - NULL -}; -#endif - -static const char *fbSymbols[] = { - "fbScreenInit", - "fbPictureInit", - NULL -}; - -static const char *xaaSymbols[] = { - "XAACreateInfoRec", - "XAADestroyInfoRec", - "XAAInit", - NULL -}; - -static const char *ramdacSymbols[] = { - "xf86CreateCursorInfoRec", - "xf86DestroyCursorInfoRec", - "xf86InitCursor", - NULL -}; - -static const char *int10Symbols[] = { - "xf86FreeInt10", - "xf86InitInt10", - NULL -}; - -static const char *shadowSymbols[] = { - "ShadowFBInit", - NULL -}; - -static const char *ddcSymbols[] = { - "xf86PrintEDID", - "xf86DoEDID_DDC2", - "xf86SetDDCproperties", - NULL -}; - -static const char *i2cSymbols[] = { - "xf86CreateI2CBusRec", - "xf86I2CBusInit", - NULL -}; - #ifdef XFree86LOADER #define ALP_MAJOR_VERSION 1 @@ -270,9 +190,6 @@ alpSetup(pointer module, pointer opts, int *errmaj, int *errmin) static Bool setupDone = FALSE; if (!setupDone) { setupDone = TRUE; - LoaderRefSymLists(vgahwSymbols, fbSymbols, xaaSymbols, - miscfbSymbols, ramdacSymbols,int10Symbols, - ddcSymbols, i2cSymbols, shadowSymbols, NULL); } return (pointer)1; } @@ -549,8 +466,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) if (!xf86LoadSubModule(pScrn, "vgahw")) return FALSE; - xf86LoaderReqSymLists(vgahwSymbols, NULL); - /* * Allocate a vgaHWRec */ @@ -582,7 +497,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) PCI_DEV_FUNC(pCir->PciInfo)); if (xf86LoadSubModule(pScrn, "int10")) { - xf86LoaderReqSymLists(int10Symbols,NULL); xf86DrvMsg(pScrn->scrnIndex,X_INFO,"initializing int10\n"); pInt = xf86InitInt10(pCir->pEnt->index); xf86FreeInt10(pInt); @@ -803,13 +717,11 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(i2cSymbols,NULL); if (!xf86LoadSubModule(pScrn, "ddc")) { AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(ddcSymbols, NULL); if(!AlpI2CInit(pScrn)) { xf86DrvMsg(pScrn->scrnIndex, X_ERROR, @@ -1102,7 +1014,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymbols("xf1bppScreenInit",NULL); break; #endif #ifdef HAVE_XF4BPP @@ -1111,7 +1022,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymbols("xf4bppScreenInit",NULL); break; #endif case 8: @@ -1122,7 +1032,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(fbSymbols, NULL); break; } @@ -1132,7 +1041,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(xaaSymbols, NULL); } /* Load ramdac if needed */ @@ -1141,7 +1049,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(ramdacSymbols, NULL); } if (pCir->shadowFB) { @@ -1149,7 +1056,6 @@ AlpPreInit(ScrnInfoPtr pScrn, int flags) AlpFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(shadowSymbols, NULL); } return TRUE; diff --git a/src/cir_driver.c b/src/cir_driver.c index 0ce058d..4cdce94 100644 --- a/src/cir_driver.c +++ b/src/cir_driver.c @@ -109,33 +109,6 @@ _X_EXPORT PciChipsets CIRPciChipsets[] = { { -1, -1, RES_UNDEFINED} }; -/* - * List of symbols from other modules that this module references. This - * list is used to tell the loader that it is OK for symbols here to be - * unresolved providing that it hasn't been told that they haven't been - * told that they are essential via a call to xf86LoaderReqSymbols() or - * xf86LoaderReqSymLists(). The purpose of this is to avoid warnings about - * unresolved symbols that are not required. - */ - -static const char *alpSymbols[] = { - "AlpAvailableOptions", - "AlpProbe", - NULL -}; -static const char *lgSymbols[] = { - "LgAvailableOptions", - "LgProbe", - NULL -}; - -static const char *vbeSymbols[] = { - "VBEInit", - "vbeDoEDID", - "vbeFree", - NULL -}; - #ifdef XFree86LOADER static MODULESETUPPROTO(cirSetup); @@ -171,7 +144,6 @@ cirSetup(pointer module, pointer opts, int *errmaj, int *errmin) setupDone = TRUE; xf86AddDriver(&CIRRUS, module, 0); - LoaderRefSymLists(alpSymbols, lgSymbols, vbeSymbols, NULL); return (pointer)1; } if (errmaj) *errmaj = LDR_ONCEONLY; @@ -236,13 +208,11 @@ CIRProbe(DriverPtr drv, int flags) if (flags & PROBE_DETECT) { if (!lg_loaded) { if (xf86LoadDrvSubModule(drv, "cirrus_laguna")) { - xf86LoaderReqSymLists(lgSymbols, NULL); lg_loaded = TRUE; } } if (!alp_loaded) { if (xf86LoadDrvSubModule(drv, "cirrus_alpine")) { - xf86LoaderReqSymLists(alpSymbols, NULL); alp_loaded = TRUE; } } @@ -288,7 +258,6 @@ CIRProbe(DriverPtr drv, int flags) if (!lg_loaded) { if (!xf86LoadDrvSubModule(drv, "cirrus_laguna")) continue; - xf86LoaderReqSymLists(lgSymbols, NULL); lg_loaded = TRUE; } pScrn = LgProbe(usedChips[i]); @@ -296,7 +265,6 @@ CIRProbe(DriverPtr drv, int flags) if (!alp_loaded) { if (!xf86LoadDrvSubModule(drv, "cirrus_alpine")) continue; - xf86LoaderReqSymLists(alpSymbols, NULL); alp_loaded = TRUE; } pScrn = AlpProbe(usedChips[i]); @@ -444,7 +412,6 @@ cirProbeDDC(ScrnInfoPtr pScrn, int index) vbeInfoPtr pVbe; if (xf86LoadSubModule(pScrn, "vbe")) { - xf86LoaderReqSymLists(vbeSymbols,NULL); pVbe = VBEInit(NULL,index); ConfiguredMonitor = vbeDoEDID(pVbe, NULL); vbeFree(pVbe); diff --git a/src/lg_driver.c b/src/lg_driver.c index ff5a477..c154c8a 100644 --- a/src/lg_driver.c +++ b/src/lg_driver.c @@ -161,80 +161,6 @@ static int LgLinePitches[4][11] = { /* 32 */ { 160, 256, 320, 416, 512, 640, 832, 1024, 1280, 1664, 0 } }; -/* - * List of symbols from other modules that this module references. This - * list is used to tell the loader that it is OK for symbols here to be - * unresolved providing that it hasn't been told that they haven't been - * told that they are essential via a call to xf86LoaderReqSymbols() or - * xf86LoaderReqSymLists(). The purpose is this is to avoid warnings about - * unresolved symbols that are not required. - */ - -static const char *vgahwSymbols[] = { - "vgaHWFreeHWRec", - "vgaHWGetHWRec", - "vgaHWGetIOBase", - "vgaHWGetIndex", - "vgaHWHandleColormaps", - "vgaHWInit", - "vgaHWLock", - "vgaHWMapMem", - "vgaHWProtect", - "vgaHWRestore", - "vgaHWSave", - "vgaHWSaveScreen", - "vgaHWUnlock", - NULL -}; - -static const char *fbSymbols[] = { - "fbScreenInit", - "fbPictureInit", - NULL -}; - -static const char *xaaSymbols[] = { - "XAACreateInfoRec", - "XAADestroyInfoRec", - "XAAInit", - NULL -}; - -static const char *ramdacSymbols[] = { - "xf86CreateCursorInfoRec", - "xf86DestroyCursorInfoRec", - "xf86InitCursor", - NULL -}; - -#define LGuseI2C 1 - -static const char *ddcSymbols[] = { - "xf86PrintEDID", -#if LGuseI2C - "xf86DoEDID_DDC2", -#endif - "xf86SetDDCproperties", - NULL -}; - -static const char *i2cSymbols[] = { - "xf86CreateI2CBusRec", - "xf86I2CBusInit", - NULL -}; - -static const char *int10Symbols[] = { - "xf86FreeInt10", - "xf86InitInt10", - NULL -}; - -static const char *shadowSymbols[] = { - "ShadowFBInit", - NULL -}; - #ifdef XFree86LOADER #define LG_MAJOR_VERSION 1 @@ -274,9 +200,6 @@ lgSetup(pointer module, pointer opts, int *errmaj, int *errmin) if (!setupDone) { setupDone = TRUE; - LoaderRefSymLists(vgahwSymbols, fbSymbols, xaaSymbols, - ramdacSymbols, ddcSymbols, i2cSymbols, - int10Symbols, NULL); } return (pointer)1; } @@ -430,8 +353,6 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) if (!xf86LoadSubModule(pScrn, "vgahw")) return FALSE; - xf86LoaderReqSymLists(vgahwSymbols, NULL); - /* * Allocate a vgaHWRec */ @@ -463,7 +384,6 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) if (xf86LoadSubModule(pScrn, "int10")) { xf86Int10InfoPtr int10InfoPtr; - xf86LoaderReqSymLists(int10Symbols, NULL); int10InfoPtr = xf86InitInt10(pCir->pEnt->index); @@ -666,14 +586,12 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) LgFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(ddcSymbols, NULL); #if LGuseI2C if (!xf86LoadSubModule(pScrn, "i2c")) { LgFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(i2cSymbols, NULL); #endif /* Read and print the monitor DDC information */ @@ -866,7 +784,6 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) LgFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(fbSymbols, NULL); break; } @@ -876,7 +793,6 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) LgFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(xaaSymbols, NULL); } /* Load ramdac if needed */ @@ -885,7 +801,6 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) LgFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(ramdacSymbols, NULL); } if (pCir->shadowFB) { @@ -893,7 +808,6 @@ LgPreInit(ScrnInfoPtr pScrn, int flags) LgFreeRec(pScrn); return FALSE; } - xf86LoaderReqSymLists(shadowSymbols, NULL); } return TRUE; -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org