public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC: PATCH] err.h: silence warning when using IS_ERR on void __iomem *
@ 2013-06-12 21:31 Marc Kleine-Budde
  2013-06-13  5:25 ` Sachin Kamat
  0 siblings, 1 reply; 8+ messages in thread
From: Marc Kleine-Budde @ 2013-06-12 21:31 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, kernel, Marc Kleine-Budde

Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()")
introduced devm_ioremap_resource() and encourage to check its return value with
IS_ERR(). This however leads to the following sparse warnings, as
devm_ioremap_resource() returns a void __iomem pointer:

drivers/net/can/c_can/c_can_platform.c:205:32: warning: incorrect type in argument 1 (different address spaces)
drivers/net/can/c_can/c_can_platform.c:205:32:    expected void const *ptr
drivers/net/can/c_can/c_can_platform.c:205:32:    got unsigned int [noderef] [usertype] <asn:2>*raminit_ctrlreg

This patch silences the warning by introducing a macro to force cast the
pointer to a plain const void *.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
Hello,

I think this macro is a bit ugly, is there a better way to make sparse happy?
If we agree on a solution other functions in this file have to be wrapped.

regards,
Marc

 include/linux/err.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/include/linux/err.h b/include/linux/err.h
index f2edce2..1a5a57b 100644
--- a/include/linux/err.h
+++ b/include/linux/err.h
@@ -29,11 +29,13 @@ static inline long __must_check PTR_ERR(const void *ptr)
 	return (long) ptr;
 }
 
-static inline long __must_check IS_ERR(const void *ptr)
+static inline long __must_check __IS_ERR(const void *ptr)
 {
 	return IS_ERR_VALUE((unsigned long)ptr);
 }
 
+#define IS_ERR(__ptr)	__IS_ERR((const void __force *)__ptr)
+
 static inline long __must_check IS_ERR_OR_NULL(const void *ptr)
 {
 	return !ptr || IS_ERR_VALUE((unsigned long)ptr);
-- 
1.8.2.rc2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-06-17 10:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-12 21:31 [RFC: PATCH] err.h: silence warning when using IS_ERR on void __iomem * Marc Kleine-Budde
2013-06-13  5:25 ` Sachin Kamat
2013-06-13 18:24   ` Thierry Reding
2013-06-13 19:19     ` Marc Kleine-Budde
2013-06-13 20:14     ` Andrew Morton
2013-06-13 21:39       ` Thierry Reding
2013-06-17  7:59         ` Dan Carpenter
2013-06-17 10:11           ` Thierry Reding

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox