All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] asm-generic/io.h: convert readX defines to functions
@ 2013-01-07 15:34 Heiko Carstens
  2013-01-07 15:42 ` Arnd Bergmann
  0 siblings, 1 reply; 3+ messages in thread
From: Heiko Carstens @ 2013-01-07 15:34 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: Gerald Schaefer, Sebastian Ott, linux-kernel

>From 75cde984766e7a76d194a11e513a039b5d0a6204 Mon Sep 17 00:00:00 2001
From: Heiko Carstens <heiko.carstens@de.ibm.com>
Date: Mon, 7 Jan 2013 14:17:23 +0100
Subject: [PATCH] asm-generic/io.h: convert readX defines to functions

E.g. readl is defined like this

 #define readl(addr) __le32_to_cpu(__raw_readl(addr))

If there is a readl() call that doesn't check the return value
this will cause a compile warning on big endian machines due to
the __le32_to_cpu macro magic.

E.g. code like this:

	readl(addr);

will generate the following compile warning:

warning: value computed is not used [-Wunused-value]

Convert the defines to functions so we get rid of these warnings.
With this patch we get rid of dozens of compile warnings on s390.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
---
 include/asm-generic/io.h | 20 +++++++++++++++++---
 1 file changed, 17 insertions(+), 3 deletions(-)

diff --git a/include/asm-generic/io.h b/include/asm-generic/io.h
index 9e0ebe0..2d30764 100644
--- a/include/asm-generic/io.h
+++ b/include/asm-generic/io.h
@@ -54,8 +54,18 @@ static inline u32 __raw_readl(const volatile void __iomem *addr)
 #endif
 
 #define readb __raw_readb
-#define readw(addr) __le16_to_cpu(__raw_readw(addr))
-#define readl(addr) __le32_to_cpu(__raw_readl(addr))
+
+#define readw readw
+static inline u16 readw(const volatile void __iomem *addr)
+{
+	return __le16_to_cpu(__raw_readw(addr));
+}
+
+#define readl readl
+static inline u32 __raw_readl(const volatile void __iomem *addr)
+{
+	return __le32_to_cpu(__raw_readl(addr));
+}
 
 #ifndef __raw_writeb
 static inline void __raw_writeb(u8 b, volatile void __iomem *addr)
@@ -90,7 +100,11 @@ static inline u64 __raw_readq(const volatile void __iomem *addr)
 }
 #endif
 
-#define readq(addr) __le64_to_cpu(__raw_readq(addr))
+#define readq readq
+static inline u64 readq(const volatile void __iomem *addr)
+{
+	return __le64_to_cpu(__raw_readq(addr));
+}
 
 #ifndef __raw_writeq
 static inline void __raw_writeq(u64 b, volatile void __iomem *addr)
-- 
1.7.12.4


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

* Re: [PATCH] asm-generic/io.h: convert readX defines to functions
  2013-01-07 15:34 [PATCH] asm-generic/io.h: convert readX defines to functions Heiko Carstens
@ 2013-01-07 15:42 ` Arnd Bergmann
  2013-01-07 16:09   ` Heiko Carstens
  0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2013-01-07 15:42 UTC (permalink / raw)
  To: Heiko Carstens; +Cc: Gerald Schaefer, Sebastian Ott, linux-kernel

On Monday 07 January 2013 16:34:59 Heiko Carstens wrote:
> 
> E.g. readl is defined like this
> 
>  #define readl(addr) __le32_to_cpu(__raw_readl(addr))
> 
> If there is a readl() call that doesn't check the return value
> this will cause a compile warning on big endian machines due to
> the __le32_to_cpu macro magic.
> 
> E.g. code like this:
> 
>         readl(addr);
> 
> will generate the following compile warning:
> 
> warning: value computed is not used [-Wunused-value]
> 
> Convert the defines to functions so we get rid of these warnings.
> With this patch we get rid of dozens of compile warnings on s390.
> 
> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>

Acked-by: Arnd Bergmann <arnd@arndb.de>

if you fix this:

> +#define readl readl
> +static inline u32 __raw_readl(const volatile void __iomem *addr)
> +{
> +       return __le32_to_cpu(__raw_readl(addr));
> +}
 
to be called readl rather than __raw_readl

	Arnd

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

* Re: [PATCH] asm-generic/io.h: convert readX defines to functions
  2013-01-07 15:42 ` Arnd Bergmann
@ 2013-01-07 16:09   ` Heiko Carstens
  0 siblings, 0 replies; 3+ messages in thread
From: Heiko Carstens @ 2013-01-07 16:09 UTC (permalink / raw)
  To: Arnd Bergmann; +Cc: Gerald Schaefer, Sebastian Ott, linux-kernel

On Mon, Jan 07, 2013 at 03:42:38PM +0000, Arnd Bergmann wrote:
> On Monday 07 January 2013 16:34:59 Heiko Carstens wrote:
> 
> Acked-by: Arnd Bergmann <arnd@arndb.de>
> 
> if you fix this:
> 
> > +#define readl readl
> > +static inline u32 __raw_readl(const volatile void __iomem *addr)
> > +{
> > +       return __le32_to_cpu(__raw_readl(addr));
> > +}
> 
> to be called readl rather than __raw_readl

duhh... thanks! :)


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

end of thread, other threads:[~2013-01-07 16:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-07 15:34 [PATCH] asm-generic/io.h: convert readX defines to functions Heiko Carstens
2013-01-07 15:42 ` Arnd Bergmann
2013-01-07 16:09   ` Heiko Carstens

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.