ab7efcc97e
Provide abstraction for generating type and size information of assembly routines and data, while permitting architectures to override these defaults. Signed-off-by: Jan Beulich <jbeulich@novell.com> Cc: "Russell King" <rmk@arm.linux.org.uk> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: "Andi Kleen" <ak@suse.de> Cc: "Luck, Tony" <tony.luck@intel.com> Cc: Miles Bader <uclinux-v850@lsi.nec.co.jp> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
14 lines
188 B
C
14 lines
188 B
C
#ifndef __ASM_LINKAGE_H
|
|
#define __ASM_LINKAGE_H
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#define asmlinkage CPP_ASMLINKAGE __attribute__((syscall_linkage))
|
|
|
|
#else
|
|
|
|
#include <asm/asmmacro.h>
|
|
|
|
#endif
|
|
|
|
#endif
|