summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2009-11-07 00:27:26 -0500
committerAlan Coopersmith <alan.coopersmith@sun.com>2009-11-06 22:23:55 -0800
commit882da603e0179a5f21879a3d3478b52e11daf438 (patch)
tree3e12d3b15dba13086b7513c616d0f5f4f225d7af
parent059e58784cb41ed3c007386359488394557810dd (diff)
Use usleep instead of xf86UDelay
Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r--src/ast_vgatool.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ast_vgatool.c b/src/ast_vgatool.c
index c4975f4..5629b85 100644
--- a/src/ast_vgatool.c
+++ b/src/ast_vgatool.c
@@ -451,18 +451,18 @@ GetVGA2EDID(ScrnInfoPtr pScrn, unsigned char *pEDIDBuffer)
/* SCU settings */
*(ULONG *) (pAST->MMIOVirtualAddr + 0xF004) = 0x1e6e0000;
*(ULONG *) (pAST->MMIOVirtualAddr + 0xF000) = 0x1;
- xf86UDelay(10000);
+ usleep(10000);
*(ULONG *) (pAST->MMIOVirtualAddr + 0x12000) = 0x1688A8A8;
ulData = *(ULONG *) (pAST->MMIOVirtualAddr + 0x12004);
ulData &= 0xfffffffb;
*(ULONG *) (pAST->MMIOVirtualAddr + 0x12004) = ulData;
- xf86UDelay(10000);
+ usleep(10000);
/* I2C settings */
*(ULONG *) (pAST->MMIOVirtualAddr + 0xF004) = I2C_BASE;
*(ULONG *) (pAST->MMIOVirtualAddr + 0xF000) = 0x1;
- xf86UDelay(10000);
+ usleep(10000);
/* I2C Start */
*(ULONG *) (ulI2CBase + 0x00) = 0x0;
@@ -782,7 +782,7 @@ void vInitDRAMReg(ScrnInfoPtr pScrn)
if (pjDRAMRegInfo->Index == 0xFF00) /* Delay function */
{
for (i=0; i<15; i++)
- xf86UDelay(pjDRAMRegInfo->Data);
+ usleep(pjDRAMRegInfo->Data);
}
else if ( (pjDRAMRegInfo->Index == 0x0004) && (pAST->jChipType != AST2000) )
{