summaryrefslogtreecommitdiff
path: root/src/ati.c
diff options
context:
space:
mode:
authorGeorge Sapountzis <gsap7@yahoo.gr>2008-01-12 16:17:21 +0200
committerGeorge Sapountzis <gsap7@yahoo.gr>2008-01-16 16:15:47 +0200
commit311ec7b6c54a50a4b8a5a445f7283da2b0b2e0f5 (patch)
tree015825617f6c2aed788db4f2ff9f0ae1de16b15d /src/ati.c
parent5244e235262290eab8a3546f449295c12ed8f6c7 (diff)
atimisc: rename to mach64
Diffstat (limited to 'src/ati.c')
-rw-r--r--src/ati.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ati.c b/src/ati.c
index 71177baf..5a4eb019 100644
--- a/src/ati.c
+++ b/src/ati.c
@@ -233,12 +233,12 @@ ATIProbe
/* Call Mach64 driver probe */
if (DoMach64)
{
- pointer atimisc = xf86LoadDrvSubModule(pDriver, "atimisc");
+ pointer mach64 = xf86LoadDrvSubModule(pDriver, "mach64");
- if (!atimisc)
+ if (!mach64)
{
xf86Msg(X_ERROR,
- ATI_NAME ": Failed to load \"atimisc\" module.\n");
+ ATI_NAME ": Failed to load \"mach64\" module.\n");
return FALSE;
}
@@ -247,7 +247,7 @@ ATIProbe
if (Mach64Probe(pDriver, flags))
return TRUE;
- xf86UnloadSubModule(atimisc);
+ xf86UnloadSubModule(mach64);
}
return FALSE;