summaryrefslogtreecommitdiff
path: root/src/radeon_exa.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/radeon_exa.c')
-rw-r--r--src/radeon_exa.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/radeon_exa.c b/src/radeon_exa.c
index 4ea451d7..4da4841a 100644
--- a/src/radeon_exa.c
+++ b/src/radeon_exa.c
@@ -105,21 +105,6 @@ RADEONLog2(int val)
return bits - 1;
}
-static __inline__ int
-RADEONPow2(int num)
-{
- int pot = 2;
-
- if (num <= 2)
- return num;
-
- while (pot < num) {
- pot *= 2;
- }
-
- return pot;
-}
-
static __inline__ CARD32 F_TO_DW(float val)
{
union {