Mesa (master): gallium/double_list: s/INLINE/ inline and remove the p_compiler include

Jason Ekstrand jekstrand at kemper.freedesktop.org
Sat May 9 00:29:59 UTC 2015


Module: Mesa
Branch: master
Commit: 258b4194c8314ffc57ff676ad2528b741b47031e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=258b4194c8314ffc57ff676ad2528b741b47031e

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Mon Apr 27 16:58:29 2015 -0700

gallium/double_list: s/INLINE/inline and remove the p_compiler include

Acked-by: Connor Abbott <cwabbott0 at gmail.com>
Reviewed-by: Rob Clark <robclark at freedesktop.org>

---

 src/gallium/auxiliary/util/u_double_list.h |   13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_double_list.h b/src/gallium/auxiliary/util/u_double_list.h
index 247f0f2..e808333 100644
--- a/src/gallium/auxiliary/util/u_double_list.h
+++ b/src/gallium/auxiliary/util/u_double_list.h
@@ -39,7 +39,6 @@
 
 
 #include <stddef.h>
-#include "pipe/p_compiler.h"
 
 
 struct list_head
@@ -48,13 +47,13 @@ struct list_head
     struct list_head *next;
 };
 
-static INLINE void list_inithead(struct list_head *item)
+static inline void list_inithead(struct list_head *item)
 {
     item->prev = item;
     item->next = item;
 }
 
-static INLINE void list_add(struct list_head *item, struct list_head *list)
+static inline void list_add(struct list_head *item, struct list_head *list)
 {
     item->prev = list;
     item->next = list->next;
@@ -62,7 +61,7 @@ static INLINE void list_add(struct list_head *item, struct list_head *list)
     list->next = item;
 }
 
-static INLINE void list_addtail(struct list_head *item, struct list_head *list)
+static inline void list_addtail(struct list_head *item, struct list_head *list)
 {
     item->next = list;
     item->prev = list->prev;
@@ -70,7 +69,7 @@ static INLINE void list_addtail(struct list_head *item, struct list_head *list)
     list->prev = item;
 }
 
-static INLINE void list_replace(struct list_head *from, struct list_head *to)
+static inline void list_replace(struct list_head *from, struct list_head *to)
 {
     to->prev = from->prev;
     to->next = from->next;
@@ -78,14 +77,14 @@ static INLINE void list_replace(struct list_head *from, struct list_head *to)
     from->prev->next = to;
 }
 
-static INLINE void list_del(struct list_head *item)
+static inline void list_del(struct list_head *item)
 {
     item->prev->next = item->next;
     item->next->prev = item->prev;
     item->prev = item->next = NULL;
 }
 
-static INLINE void list_delinit(struct list_head *item)
+static inline void list_delinit(struct list_head *item)
 {
     item->prev->next = item->next;
     item->next->prev = item->prev;




More information about the mesa-commit mailing list