summaryrefslogtreecommitdiff
path: root/src/i810_driver.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@neko.keithp.com>2006-09-22 02:20:35 +0100
committerKeith Packard <keithp@neko.keithp.com>2006-09-22 02:24:05 +0100
commitd87d1f5bb0475c6f651fcb7e2cab2a7d46edcc69 (patch)
tree32ac04eb78b2d64e1ef254c4df58a06bb4fcffdd /src/i810_driver.c
parentdaade50ca271d1cdf236bbe84afade85d4111ac9 (diff)
Remove BIOS from non-BIOS related names.
Lots of names included BIOS for no apparent reason; as we try to eliminate BIOS calls from the driver, these only serve to confuse us. (cherry picked from 8e5d280d94ad3d3ba3c75871c17abec9da62ed34 commit)
Diffstat (limited to 'src/i810_driver.c')
-rw-r--r--src/i810_driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c
index b87601e0..c8cb6071 100644
--- a/src/i810_driver.c
+++ b/src/i810_driver.c
@@ -477,11 +477,11 @@ I810AvailableOptions(int chipid, int busid)
#ifndef I830_ONLY
const OptionInfoRec *pOptions;
- if ((pOptions = I830BIOSAvailableOptions(chipid, busid)))
+ if ((pOptions = I830AvailableOptions(chipid, busid)))
return pOptions;
return I810Options;
#else
- return I830BIOSAvailableOptions(chipid, busid);
+ return I830AvailableOptions(chipid, busid);
#endif
}