From b6578810718d34c3e57a95173bfec9f68e8ffb9b Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 10 Dec 2013 15:22:13 +0100 Subject: [PATCH] err.h: Add PTR_ERR_OR_ZERO from kernel Signed-off-by: Sascha Hauer --- include/linux/err.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/linux/err.h b/include/linux/err.h index 19fb70dc0..ed563f2c4 100644 --- a/include/linux/err.h +++ b/include/linux/err.h @@ -52,6 +52,14 @@ static inline void *ERR_CAST(const void *ptr) return (void *) ptr; } +static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr) +{ + if (IS_ERR(ptr)) + return PTR_ERR(ptr); + else + return 0; +} + #endif #endif /* _LINUX_ERR_H */