diff options
-rw-r--r-- | include/linux/err.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/err.h b/include/linux/err.h index 1ab1d44f8d3b..ec87f3142bf3 100644 --- a/include/linux/err.h +++ b/include/linux/err.h | |||
@@ -34,6 +34,19 @@ static inline long IS_ERR(const void *ptr) | |||
34 | return IS_ERR_VALUE((unsigned long)ptr); | 34 | return IS_ERR_VALUE((unsigned long)ptr); |
35 | } | 35 | } |
36 | 36 | ||
37 | /** | ||
38 | * ERR_CAST - Explicitly cast an error-valued pointer to another pointer type | ||
39 | * @ptr: The pointer to cast. | ||
40 | * | ||
41 | * Explicitly cast an error-valued pointer to another pointer type in such a | ||
42 | * way as to make it clear that's what's going on. | ||
43 | */ | ||
44 | static inline void *ERR_CAST(const void *ptr) | ||
45 | { | ||
46 | /* cast away the const */ | ||
47 | return (void *) ptr; | ||
48 | } | ||
49 | |||
37 | #endif | 50 | #endif |
38 | 51 | ||
39 | #endif /* _LINUX_ERR_H */ | 52 | #endif /* _LINUX_ERR_H */ |