gallium: minor code/comments clean-up
authorBrian Paul <brianp@vmware.com>
Mon, 27 Jul 2009 23:18:05 +0000 (17:18 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 28 Jul 2009 14:55:43 +0000 (08:55 -0600)
src/gallium/auxiliary/util/u_mm.c
src/gallium/auxiliary/util/u_mm.h

index 151a480d34d084f65a5dd3074ac6cf054a1d8dcf..4b75d4ba1d0155f9129663ab3b557a1cdb2458d2 100644 (file)
 void
 u_mmDumpMemInfo(const struct mem_block *heap)
 {
-   debug_printf("Memory heap %p:\n", (void *)heap);
+   debug_printf("Memory heap %p:\n", (void *) heap);
    if (heap == 0) {
       debug_printf("  heap == 0\n");
-   } else {
+   }
+   else {
       const struct mem_block *p;
 
-      for(p = heap->next; p != heap; p = p->next) {
-        debug_printf("  Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size,
-                p->free ? 'F':'.',
-                p->reserved ? 'R':'.');
+      for (p = heap->next; p != heap; p = p->next) {
+        debug_printf("  Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size,
+                      p->free ? 'F':'.',
+                      p->reserved ? 'R':'.');
       }
 
       debug_printf("\nFree list:\n");
 
-      for(p = heap->next_free; p != heap; p = p->next_free) {
-        debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n",p->ofs,p->size,
-                p->free ? 'F':'.',
-                p->reserved ? 'R':'.');
+      for (p = heap->next_free; p != heap; p = p->next_free) {
+        debug_printf(" FREE Offset:%08x, Size:%08x, %c%c\n", p->ofs, p->size,
+                      p->free ? 'F':'.',
+                      p->reserved ? 'R':'.');
       }
 
    }
    debug_printf("End of memory blocks\n");
 }
 
+
 struct mem_block *
 u_mmInit(int ofs, int size)
 {
index ce20e4876350f52c759f5ee9e2fca8737f764457..6b158aae6e4585b86f9935cc804e619c4bdf763b 100644 (file)
@@ -84,7 +84,7 @@ extern struct mem_block *u_mmFindBlock(struct mem_block *heap, int start);
 extern void u_mmDestroy(struct mem_block *mmInit);
 
 /**
- * For debuging purpose.
+ * For debugging purposes.
  */
 extern void u_mmDumpMemInfo(const struct mem_block *mmInit);