summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-11-23 20:07:24 -0500
committerAdam Jackson <ajax@redhat.com>2008-11-23 20:07:24 -0500
commit62922e27c80ac392fc35a347b2c8163fcec7decf (patch)
tree92970c2d6425bc0364e5348b772d0f96519854c6
parentce31b3e87032253ef8c77a8738014b8e981f01e5 (diff)
Use "no" bus, not ISA.
-rw-r--r--src/glide_driver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glide_driver.c b/src/glide_driver.c
index 1f6bdae..12cdcd7 100644
--- a/src/glide_driver.c
+++ b/src/glide_driver.c
@@ -392,12 +392,12 @@ GLIDEProbe(DriverPtr drv, int flags)
{
int entity;
/* Match */
- entity = xf86ClaimIsaSlot(drv, 0, dev, TRUE);
+ entity = xf86ClaimNoSlot(drv, 0, dev, TRUE);
pScrn = NULL;
/* Allocate a ScrnInfoRec and claim the slot */
- if ((pScrn = xf86ConfigIsaEntity(pScrn, 0, entity, NULL, NULL,
- NULL, NULL, NULL, NULL))) {
+ if ((pScrn = xf86AllocateScreen(drv, 0))) {
+ xf86AddEntityToScreen(pScrn, entityIndex);
/* I'm not going to "claim" the glide device since no other driver than this can drive it */
/* (A glide device is not a PCI device) */