[ARM] S3C: Fix scaler1 clock rate information
[linux-2.6/openmoko-kernel.git] / include / linux / linkage.h
blob9fd1f859021b5018baffdb440261379dab4a55b3
1 #ifndef _LINUX_LINKAGE_H
2 #define _LINUX_LINKAGE_H
4 #include <linux/compiler.h>
5 #include <asm/linkage.h>
7 #ifdef __cplusplus
8 #define CPP_ASMLINKAGE extern "C"
9 #else
10 #define CPP_ASMLINKAGE
11 #endif
13 #ifndef asmlinkage
14 #define asmlinkage CPP_ASMLINKAGE
15 #endif
17 #ifndef asmregparm
18 # define asmregparm
19 #endif
21 #define __page_aligned_data __section(.data.page_aligned) __aligned(PAGE_SIZE)
22 #define __page_aligned_bss __section(.bss.page_aligned) __aligned(PAGE_SIZE)
25 * This is used by architectures to keep arguments on the stack
26 * untouched by the compiler by keeping them live until the end.
27 * The argument stack may be owned by the assembly-language
28 * caller, not the callee, and gcc doesn't always understand
29 * that.
31 * We have the return value, and a maximum of six arguments.
33 * This should always be followed by a "return ret" for the
34 * protection to work (ie no more work that the compiler might
35 * end up needing stack temporaries for).
37 /* Assembly files may be compiled with -traditional .. */
38 #ifndef __ASSEMBLY__
39 #ifndef asmlinkage_protect
40 # define asmlinkage_protect(n, ret, args...) do { } while (0)
41 #endif
42 #endif
44 #ifndef __ALIGN
45 #define __ALIGN .align 4,0x90
46 #define __ALIGN_STR ".align 4,0x90"
47 #endif
49 #ifdef __ASSEMBLY__
51 #define ALIGN __ALIGN
52 #define ALIGN_STR __ALIGN_STR
54 #ifndef ENTRY
55 #define ENTRY(name) \
56 .globl name; \
57 ALIGN; \
58 name:
59 #endif
61 #ifndef WEAK
62 #define WEAK(name) \
63 .weak name; \
64 name:
65 #endif
67 #define KPROBE_ENTRY(name) \
68 .pushsection .kprobes.text, "ax"; \
69 ENTRY(name)
71 #define KPROBE_END(name) \
72 END(name); \
73 .popsection
75 #ifndef END
76 #define END(name) \
77 .size name, .-name
78 #endif
80 /* If symbol 'name' is treated as a subroutine (gets called, and returns)
81 * then please use ENDPROC to mark 'name' as STT_FUNC for the benefit of
82 * static analysis tools such as stack depth analyzer.
84 #ifndef ENDPROC
85 #define ENDPROC(name) \
86 .type name, @function; \
87 END(name)
88 #endif
90 #endif
92 #define NORET_TYPE /**/
93 #define ATTRIB_NORET __attribute__((noreturn))
94 #define NORET_AND noreturn,
96 #endif