]> git.baikalelectronics.ru Git - kernel.git/commitdiff
sh: Convert ins[bwl]/outs[bwl] macros to inline functions
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 20 Jan 2020 01:22:21 +0000 (10:22 +0900)
committerRich Felker <dalias@libc.org>
Mon, 1 Jun 2020 18:48:50 +0000 (14:48 -0400)
Macro ins[bwl]/outs[bwl] are just calling BUG(), but that results in
unused variable warnings all over the place.
This patch convert macro to inline to avoid warning

We will get this kind of warning without this patch

${LINUX}/drivers/iio/adc/ad7606_par.c:21:23: \
  warning: unused variable 'st' [-Wunused-variable]
struct ad7606_state *st = iio_priv(indio_dev);
^~

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Rich Felker <dalias@libc.org>
arch/sh/include/asm/io_noioport.h

index 90d6109f1622ce2b5ac70c6167ba69b479d943de..f7938fe0f91121d1841081b706b353f08c09249d 100644 (file)
@@ -53,12 +53,34 @@ static inline void ioport_unmap(void __iomem *addr)
 #define outw_p(x, addr)        outw((x), (addr))
 #define outl_p(x, addr)        outl((x), (addr))
 
-#define insb(a, b, c)  BUG()
-#define insw(a, b, c)  BUG()
-#define insl(a, b, c)  BUG()
+static inline void insb(unsigned long port, void *dst, unsigned long count)
+{
+       BUG();
+}
+
+static inline void insw(unsigned long port, void *dst, unsigned long count)
+{
+       BUG();
+}
+
+static inline void insl(unsigned long port, void *dst, unsigned long count)
+{
+       BUG();
+}
 
-#define outsb(a, b, c) BUG()
-#define outsw(a, b, c) BUG()
-#define outsl(a, b, c) BUG()
+static inline void outsb(unsigned long port, const void *src, unsigned long count)
+{
+       BUG();
+}
+
+static inline void outsw(unsigned long port, const void *src, unsigned long count)
+{
+       BUG();
+}
+
+static inline void outsl(unsigned long port, const void *src, unsigned long count)
+{
+       BUG();
+}
 
 #endif /* __ASM_SH_IO_NOIOPORT_H */