[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200322165702.6712-1-lukas.bulwahn@gmail.com>
Date: Sun, 22 Mar 2020 17:57:02 +0100
From: Lukas Bulwahn <lukas.bulwahn@...il.com>
To: Jiri Kosina <trivial@...nel.org>,
Rusty Russell <rusty@...tcorp.com.au>,
Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>,
Andrew Morton <akpm@...ux-foundation.org>
Cc: "Gustavo A . R . Silva" <gustavo@...eddedor.com>,
Nicholas Krause <xerofoify@...il.com>,
Duan Jiong <duanj.fnst@...fujitsu.com>,
Sachin Kamat <sachin.kamat@...aro.org>,
kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org,
Lukas Bulwahn <lukas.bulwahn@...il.com>
Subject: [PATCH] err.h: remove deprecated PTR_RET for good
Initially, commit fa9ee9c4b988 ("include/linux/err.h: add a function to
cast error-pointers to a return value") from Uwe Kleine-König introduced
PTR_RET in 03/2011. Then, in 07/2013, commit 6e8b8726ad50 ("PTR_RET is
now PTR_ERR_OR_ZERO") from Rusty Russell renamed PTR_RET to
PTR_ERR_OR_ZERO, and left PTR_RET as deprecated-marked alias.
After six years since the renaming and various repeated cleanups in the
meantime, it is time to finally remove the deprecated PTR_RET for good.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@...il.com>
---
Rusty, if you are still around, Acked-by is appreciated.
Uwe, Acked-by is appreciated.
Kudos to Gustavo, Nicholas, Duan & Sachin for previous cleanups.
applies cleanly on current master and on next-20200320
Jiri, please pick this trival patch for the next merge window. Thanks.
include/linux/err.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/include/linux/err.h b/include/linux/err.h
index 87be24350e91..a139c64aef2a 100644
--- a/include/linux/err.h
+++ b/include/linux/err.h
@@ -62,9 +62,6 @@ static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr)
return 0;
}
-/* Deprecated */
-#define PTR_RET(p) PTR_ERR_OR_ZERO(p)
-
#endif
#endif /* _LINUX_ERR_H */
--
2.17.1
Powered by blists - more mailing lists