From f799a527db2851b2890146a9ce777f73fea30176 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 23 Feb 2015 14:17:19 +0000 Subject: tests/radeon: set the list* functions as inline To silence the chatty compiler. As a future work we may want to merge these with libdrm_lists.h Cc: Jerome Glisse Signed-off-by: Emil Velikov Reviewed-by: Jan Vesely --- tests/radeon/list.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/radeon') diff --git a/tests/radeon/list.h b/tests/radeon/list.h index 305c903e..27e0761b 100644 --- a/tests/radeon/list.h +++ b/tests/radeon/list.h @@ -44,13 +44,13 @@ struct list_head struct list_head *next; }; -static void list_inithead(struct list_head *item) +static inline void list_inithead(struct list_head *item) { item->prev = item; item->next = item; } -static 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; @@ -58,7 +58,7 @@ static void list_add(struct list_head *item, struct list_head *list) list->next = item; } -static 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; @@ -66,7 +66,7 @@ static void list_addtail(struct list_head *item, struct list_head *list) list->prev = item; } -static 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; @@ -74,13 +74,13 @@ static void list_replace(struct list_head *from, struct list_head *to) from->prev->next = to; } -static 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; } -static 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; -- cgit v1.2.3