summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-01-10 16:54:07 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-01-10 17:20:07 -0800
commitd9db1f64514cfee060af59dbac07e77dafeae95a (patch)
tree1b5f29a4b957c2f8bc41f1e1da036dc08812d2c8
parent55c908b7e2e9e68b82bc1b9718c9a044cbeeb05c (diff)
Fix -Wmisleading-indentation warnings in regs3v.h
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/regs3v.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regs3v.h b/src/regs3v.h
index ff09c1d..55ae9d5 100644
--- a/src/regs3v.h
+++ b/src/regs3v.h
@@ -267,14 +267,14 @@ in this Software without prior written authorization from the XFree86 Project.
(loop++<MAXLOOP)); \
else \
while (((IN_SUBSYS_STAT() & 0x3f00) != 0x3000) && (loop++<MAXLOOP)); \
- if (loop >= MAXLOOP) S3VGEReset(pScrn,1,__LINE__,__FILE__); \
+ if (loop >= MAXLOOP) S3VGEReset(pScrn,1,__LINE__,__FILE__); \
} while (0)
/* Wait until GP is idle */
#define WaitIdle() \
do { int loop=0; mem_barrier(); \
while ((!(IN_SUBSYS_STAT() & 0x2000)) && (loop++<MAXLOOP)); \
- if (loop >= MAXLOOP) S3VGEReset(pScrn,1,__LINE__,__FILE__); \
+ if (loop >= MAXLOOP) S3VGEReset(pScrn,1,__LINE__,__FILE__); \
} while (0)