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 <jglisse@redhat.com> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu>main
parent
0b3e540aa4
commit
f799a527db
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue