diff options
author | George Sapountzis <gsap7@yahoo.gr> | 2008-01-12 16:17:21 +0200 |
---|---|---|
committer | George Sapountzis <gsap7@yahoo.gr> | 2008-01-16 16:15:47 +0200 |
commit | 311ec7b6c54a50a4b8a5a445f7283da2b0b2e0f5 (patch) | |
tree | 015825617f6c2aed788db4f2ff9f0ae1de16b15d /src/ati.c | |
parent | 5244e235262290eab8a3546f449295c12ed8f6c7 (diff) |
atimisc: rename to mach64
Diffstat (limited to 'src/ati.c')
-rw-r--r-- | src/ati.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |