Mesa (gallium-0.2): cell: replace FREE() with align_free()

Brian Paul brianp at kemper.freedesktop.org
Tue Oct 14 23:22:55 UTC 2008


Module: Mesa
Branch: gallium-0.2
Commit: 6c017c2c3c3649650cd0dc89a3b4946eab0e5a8c
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6c017c2c3c3649650cd0dc89a3b4946eab0e5a8c

Author: Brian Paul <brian.paul at tungstengraphics.com>
Date:   Tue Oct 14 17:22:06 2008 -0600

cell: replace FREE() with align_free()

---

 src/gallium/drivers/cell/ppu/cell_texture.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/cell/ppu/cell_texture.c b/src/gallium/drivers/cell/ppu/cell_texture.c
index 4c92ef1..230e192 100644
--- a/src/gallium/drivers/cell/ppu/cell_texture.c
+++ b/src/gallium/drivers/cell/ppu/cell_texture.c
@@ -147,7 +147,7 @@ cell_texture_release(struct pipe_screen *screen,
 
       for (i = 0; i < CELL_MAX_TEXTURE_LEVELS; i++) {
          if (ct->tiled_data[i]) {
-            FREE(ct->tiled_data[i]);
+            align_free(ct->tiled_data[i]);
          }
       }
 




More information about the mesa-commit mailing list