Eliminate use of Tag field.
The Tag field was removed from the int10 structures in commit
ca9c41e09d
. This file was over looked.
This commit is contained in:
parent
780b55ec6f
commit
f36a447d20
|
@ -90,7 +90,6 @@ xf86ExtendedInitInt10(int entityIndex, int Flags)
|
||||||
legacyVGARec vga;
|
legacyVGARec vga;
|
||||||
xf86int10BiosLocation bios;
|
xf86int10BiosLocation bios;
|
||||||
Bool videoBiosMapped = FALSE;
|
Bool videoBiosMapped = FALSE;
|
||||||
pciVideoPtr pvp;
|
|
||||||
|
|
||||||
if (int10Generation != serverGeneration) {
|
if (int10Generation != serverGeneration) {
|
||||||
counter = 0;
|
counter = 0;
|
||||||
|
@ -152,8 +151,8 @@ xf86ExtendedInitInt10(int entityIndex, int Flags)
|
||||||
pInt = (xf86Int10InfoPtr)xnfcalloc(1, sizeof(xf86Int10InfoRec));
|
pInt = (xf86Int10InfoPtr)xnfcalloc(1, sizeof(xf86Int10InfoRec));
|
||||||
pInt->scrnIndex = screen;
|
pInt->scrnIndex = screen;
|
||||||
pInt->entityIndex = entityIndex;
|
pInt->entityIndex = entityIndex;
|
||||||
pvp = xf86GetPciInfoForEntity(entityIndex);
|
pInt->dev = xf86GetPciInfoForEntity(entityIndex);
|
||||||
if (pvp) pInt->Tag = pciTag(pvp->bus, pvp->device, pvp->func);
|
|
||||||
if (!xf86Int10ExecSetup(pInt))
|
if (!xf86Int10ExecSetup(pInt))
|
||||||
goto error0;
|
goto error0;
|
||||||
pInt->mem = &linuxMem;
|
pInt->mem = &linuxMem;
|
||||||
|
|
Loading…
Reference in New Issue