xfree86: Remove some redundant zero-fill for ScrnInfoRec
xf86AllocateScreen() callocs these for us. Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
60ec8eadc3
commit
6a094185d1
|
@ -680,11 +680,6 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv)
|
||||||
#ifdef XFreeXDGA
|
#ifdef XFreeXDGA
|
||||||
pScrn->SetDGAMode = xf86SetDGAMode;
|
pScrn->SetDGAMode = xf86SetDGAMode;
|
||||||
#endif
|
#endif
|
||||||
pScrn->DPMSSet = NULL;
|
|
||||||
pScrn->LoadPalette = NULL;
|
|
||||||
pScrn->SetOverscan = NULL;
|
|
||||||
pScrn->DriverFunc = NULL;
|
|
||||||
pScrn->pScreen = NULL;
|
|
||||||
scr_index = AddGPUScreen(xf86ScreenInit, argc, argv);
|
scr_index = AddGPUScreen(xf86ScreenInit, argc, argv);
|
||||||
xf86VGAarbiterUnlock(pScrn);
|
xf86VGAarbiterUnlock(pScrn);
|
||||||
if (scr_index == i) {
|
if (scr_index == i) {
|
||||||
|
@ -708,11 +703,6 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char **argv)
|
||||||
#ifdef XFreeXDGA
|
#ifdef XFreeXDGA
|
||||||
xf86Screens[i]->SetDGAMode = xf86SetDGAMode;
|
xf86Screens[i]->SetDGAMode = xf86SetDGAMode;
|
||||||
#endif
|
#endif
|
||||||
xf86Screens[i]->DPMSSet = NULL;
|
|
||||||
xf86Screens[i]->LoadPalette = NULL;
|
|
||||||
xf86Screens[i]->SetOverscan = NULL;
|
|
||||||
xf86Screens[i]->DriverFunc = NULL;
|
|
||||||
xf86Screens[i]->pScreen = NULL;
|
|
||||||
scr_index = AddScreen(xf86ScreenInit, argc, argv);
|
scr_index = AddScreen(xf86ScreenInit, argc, argv);
|
||||||
xf86VGAarbiterUnlock(xf86Screens[i]);
|
xf86VGAarbiterUnlock(xf86Screens[i]);
|
||||||
if (scr_index == i) {
|
if (scr_index == i) {
|
||||||
|
|
Loading…
Reference in New Issue