diff options
| -rw-r--r-- | include/linux/err.h | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/err.h b/include/linux/err.h index 448afc12c78..f2edce25a76 100644 --- a/include/linux/err.h +++ b/include/linux/err.h @@ -52,6 +52,14 @@ static inline void * __must_check ERR_CAST(const void *ptr)  	return (void *) ptr;  } +static inline int __must_check PTR_RET(const void *ptr) +{ +	if (IS_ERR(ptr)) +		return PTR_ERR(ptr); +	else +		return 0; +} +  #endif  #endif /* _LINUX_ERR_H */  |