summaryrefslogtreecommitdiff
path: root/datapath/linux-2.6/compat-2.6/include/linux/err.h
blob: 50faf2a111cde1b47d1b482e70a1900a5fd215ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __LINUX_ERR_WRAPPER_H
#define __LINUX_ERR_WRAPPER_H 1

#include_next <linux/err.h>

#ifndef HAVE_ERR_CAST
/**
 * ERR_CAST - Explicitly cast an error-valued pointer to another pointer type
 * @ptr: The pointer to cast.
 *
 * Explicitly cast an error-valued pointer to another pointer type in such a
 * way as to make it clear that's what's going on.
 */
static inline void *ERR_CAST(const void *ptr)
{
	/* cast away the const */
	return (void *) ptr;
}
#endif /* HAVE_ERR_CAST */

#endif