sunxi-tools.h 1.66 KB
Newer Older
Alejandro Mery's avatar
Alejandro Mery committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (C) 2012  Alejandro Mery <amery@geeks.cl>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef _SUNXI_TOOLS_H
#define _SUNXI_TOOLS_H

20
/** flat function argument as unused */
Alejandro Mery's avatar
Alejandro Mery committed
21
22
23
24
25
26
27
#ifdef UNUSED
#elif defined(__GNUC__)
#	define UNUSED(x) UNUSED_ ## x __attribute__((unused))
#else
#	define UNUSED(x) UNUSED_ ## x
#endif

28
/** shortcut to printf to stderr */
29
30
#define errf(...)	fprintf(stderr, __VA_ARGS__)

31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/** a list hook */
struct list_entry {
	struct list_entry *prev;
	struct list_entry *next;
};

/** initialize an empty list hook */
static inline void list_init(struct list_entry *self)
{
	self->prev = self->next = self;
}

/** append a list hook @l1 at the end of the list @l0 */
static inline void list_append(struct list_entry *l0, struct list_entry *l1)
{
	l1->next = l0;
	l1->prev = l0->prev;
	l0->prev = l1;
}

51
52
53
54
55
56
/** returns list element of a list */
static inline struct list_entry *list_last(struct list_entry *l)
{
	return (l->prev == l) ? (void*)0 : l->prev;
}

57
58
59
60
61
62
/** is list empty? */
static inline int list_empty(struct list_entry *l)
{
	return (l->prev == l);
}

Alejandro Mery's avatar
Alejandro Mery committed
63
#endif