summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2008-02-16 09:13:43 +1000
committerDave Airlie <airlied@linux.ie>2008-02-16 09:13:43 +1000
commitd055b9e800ae50d08cca9db75fc666ce1da9ab52 (patch)
tree021d49446aaf587713d2812e59274e80434f5c9c /src
parentc773bc6a314327da29e21e4ebac6fa7f3e98a0a7 (diff)
r128/radeon: hopeful fix for non pci access code
Diffstat (limited to 'src')
-rw-r--r--src/r128_probe.c2
-rw-r--r--src/radeon_probe.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/r128_probe.c b/src/r128_probe.c
index 431efef..1b07ebd 100644
--- a/src/r128_probe.c
+++ b/src/r128_probe.c
@@ -332,7 +332,7 @@ R128Probe(DriverPtr drv, int flags)
if (flags & PROBE_DETECT)
foundScreen = TRUE;
else for (i = 0; i < numUsed; i++) {
- if (r128_get_scrninfo(entity_num))
+ if (r128_get_scrninfo(i))
foundScreen = TRUE;
}
diff --git a/src/radeon_probe.c b/src/radeon_probe.c
index 936d43f..fc621c7 100644
--- a/src/radeon_probe.c
+++ b/src/radeon_probe.c
@@ -180,7 +180,7 @@ RADEONProbe(DriverPtr drv, int flags)
foundScreen = TRUE;
} else {
for (i = 0; i < numUsed; i++) {
- if (radeon_get_scrninfo(entity_num))
+ if (radeon_get_scrninfo(i))
foundScreen = TRUE;
}
}