All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai-core] [PULL] x86: Fix return type of DO_SYSCALL_INNER macro
@ 2011-04-29 12:19 Jan Kiszka
  0 siblings, 0 replies; only message in thread
From: Jan Kiszka @ 2011-04-29 12:19 UTC (permalink / raw)
  To: Xenomai core

The following changes since commit 985cf80d202f97e32ae45957f2bfca764e3eb243:

  nios2: fix pipeline patch for 2.6.35-mmu -- take #2 (2011-04-29 11:34:11 +0200)

are available in the git repository at:
  git://git.xenomai.org/xenomai-jki.git for-upstream

Jan Kiszka (1):
      x86: Fix return type of DO_SYSCALL_INNER macro

 include/asm-x86/syscall.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

---

x86: Fix return type of DO_SYSCALL_INNER macro

gcc will complain about 'conversion to ‘int’ from ‘long int’ may alter
its value' with -Wconversion as DO_SYSCALL treats the return value of
DO_SYSCALL_INNER as int. Align DO_SYSCALL_INNER to its user.

Signed-off-by: Jan Kiszka <jan.kiszka@domain.hid>
---
 include/asm-x86/syscall.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/asm-x86/syscall.h b/include/asm-x86/syscall.h
index 06195c9..b02c01d 100644
--- a/include/asm-x86/syscall.h
+++ b/include/asm-x86/syscall.h
@@ -386,7 +386,7 @@ static inline void __xn_get_ebp(void **dest)
 		: "=a" (__resultvar)		\
 		: "0" (name) ASM_ARGS_##nr	\
 		: "memory", "cc", "r11", "cx");	\
-	(long) __resultvar;			\
+	(int) __resultvar;			\
 })
 
 #define DO_SYSCALL(name, nr, args...)					\
-- 
1.7.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-04-29 12:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-29 12:19 [Xenomai-core] [PULL] x86: Fix return type of DO_SYSCALL_INNER macro Jan Kiszka

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.