diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-05-23 02:13:53 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-05-23 02:13:53 +0000 |
commit | fe9026d04abd0e11799f1369f953f5d7ce053a54 (patch) | |
tree | 74ddb82e91e66c0e6a01304c369cbbae47433148 /src | |
parent | a6f7f10efadb3c3e1aea6502b1c444189ba77124 (diff) |
make mgaSetFence() and mgaWaitFence() static
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/mga/mgaioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/mga/mgaioctl.c b/src/mesa/drivers/dri/mga/mgaioctl.c index df253d1593..6e653f8c73 100644 --- a/src/mesa/drivers/dri/mga/mgaioctl.c +++ b/src/mesa/drivers/dri/mga/mgaioctl.c @@ -50,7 +50,7 @@ #include "vblank.h" -int +static int mgaSetFence( mgaContextPtr mmesa, uint32_t * fence ) { int ret = ENOSYS; @@ -68,7 +68,7 @@ mgaSetFence( mgaContextPtr mmesa, uint32_t * fence ) } -int +static int mgaWaitFence( mgaContextPtr mmesa, uint32_t fence, uint32_t * curr_fence ) { int ret = ENOSYS; |