linux-arch.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] sh: fix compiler warning by properly inlining flat_set_persistent()
@ 2012-06-09  8:13 Ezequiel Garcia
  2012-06-09  8:13 ` Ezequiel Garcia
                   ` (6 more replies)
  0 siblings, 7 replies; 21+ messages in thread
From: Ezequiel Garcia @ 2012-06-09  8:13 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-arch, Ezequiel Garcia, Paul Mundt, linux-sh

This patch removes the following warning:
fs/binfmt_flat.c:752: warning: unused variable ‘persistent’
There is neither change in functionality, nor extra code generated.

Cc: Paul Mundt <lethal@linux-sh.org>
Cc: <linux-sh@vger.kernel.org>
Signed-off-by: Ezequiel Garcia <elezegarcia@gmail.com>
---
 arch/sh/include/asm/flat.h |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/arch/sh/include/asm/flat.h b/arch/sh/include/asm/flat.h
index 5d84df5..51dd7af 100644
--- a/arch/sh/include/asm/flat.h
+++ b/arch/sh/include/asm/flat.h
@@ -18,7 +18,12 @@
 #define	flat_get_addr_from_rp(rp, relval, flags, p)	get_unaligned(rp)
 #define	flat_put_addr_at_rp(rp, val, relval)	put_unaligned(val,rp)
 #define	flat_get_relocate_addr(rel)		(rel)
-#define	flat_set_persistent(relval, p)		({ (void)p; 0; })
+
+static inline int flat_set_persistent(unsigned long relval,
+				      unsigned long *persistent)
+{
+	return 0;
+}
 
 #define FLAT_PLAT_INIT(_r) \
   do { _r->regs[0]=0; _r->regs[1]=0; _r->regs[2]=0; _r->regs[3]=0; \
-- 
1.7.3.4


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

end of thread, other threads:[~2012-07-03 18:53 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-09  8:13 [PATCH 1/6] sh: fix compiler warning by properly inlining flat_set_persistent() Ezequiel Garcia
2012-06-09  8:13 ` Ezequiel Garcia
2012-06-09  8:13 ` [PATCH 2/6] arm: " Ezequiel Garcia
2012-06-09  8:13   ` Ezequiel Garcia
2012-07-03 18:53   ` Ezequiel Garcia
2012-06-09  8:13 ` [PATCH 3/6] xtensa: " Ezequiel Garcia
2012-06-09  8:13   ` Ezequiel Garcia
2012-06-09  8:13 ` [PATCH 4/6] microblaze: " Ezequiel Garcia
2012-06-09  8:13   ` Ezequiel Garcia
2012-06-09  8:13 ` [PATCH 5/6] m32r: " Ezequiel Garcia
2012-06-09  8:13   ` Ezequiel Garcia
2012-06-09  8:13 ` [PATCH 6/6] h8300: " Ezequiel Garcia
2012-06-09  8:13   ` Ezequiel Garcia
2012-06-09  9:14 ` [PATCH 1/6] sh: " Paul Mundt
2012-06-09 12:01   ` Ezequiel Garcia
2012-06-09 12:01     ` Ezequiel Garcia
2012-06-10 21:33   ` Ezequiel Garcia
2012-06-10 21:33     ` Ezequiel Garcia
2012-06-11  3:50     ` Paul Mundt
2012-06-11  3:50       ` Paul Mundt
2012-06-11 16:29       ` Ezequiel Garcia

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).