summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2014-08-11 12:07:54 -0400
committerAdam Jackson <ajax@redhat.com>2014-08-11 12:13:20 -0400
commitae0aeffae6657464f610da13e7b3349d0d97e81b (patch)
tree1f21988920a8a4cd1a5eeaafc906c9d211eb4546
parent2673e727063fe28310836f1e6e9eda552930218a (diff)
downloadxorg-driver-xf86-video-fbdev-ae0aeffae6657464f610da13e7b3349d0d97e81b.tar.gz
Pass the pci device (if any) through to fbdevhw in probe and preinit
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--src/fbdev.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/fbdev.c b/src/fbdev.c
index 5e38da4..dcfed28 100644
--- a/src/fbdev.c
+++ b/src/fbdev.c
@@ -280,7 +280,7 @@ static Bool FBDevPciProbe(DriverPtr drv, int entity_num,
pScrn->entityInstanceList[0]);
device = xf86FindOptionValue(devSection->options, "fbdev");
- if (fbdevHWProbe(NULL, device, NULL)) {
+ if (fbdevHWProbe(dev, device, NULL)) {
pScrn->driverVersion = FBDEV_VERSION;
pScrn->driverName = FBDEV_DRIVER_NAME;
pScrn->name = FBDEV_NAME;
@@ -427,6 +427,7 @@ FBDevPreInit(ScrnInfoPtr pScrn, int flags)
int default_depth, fbbpp;
const char *s;
int type;
+ void *pci_dev;
if (flags & PROBE_DETECT) return FALSE;
@@ -454,9 +455,14 @@ FBDevPreInit(ScrnInfoPtr pScrn, int flags)
"xf86RegisterResources() found resource conflicts\n");
return FALSE;
}
+#else
+ if (fPtr->pEnt->location.type == BUS_PCI)
+ pci_dev = fPtr->pEnt->location.id.pci;
#endif
/* open device */
- if (!fbdevHWInit(pScrn,NULL,xf86FindOptionValue(fPtr->pEnt->device->options,"fbdev")))
+ if (!fbdevHWInit(pScrn, pci_dev,
+ xf86FindOptionValue(fPtr->pEnt->device->options,
+ "fbdev")))
return FALSE;
default_depth = fbdevHWGetDepth(pScrn,&fbbpp);