[GIANFAR]: Fix compile error in latest git
[linux-2.6.22.y-op.git] / include / asm-parisc / linkage.h
blob7a09d911b53895eb5976ab96fd62d53989018d11
1 #ifndef __ASM_PARISC_LINKAGE_H
2 #define __ASM_PARISC_LINKAGE_H
4 #ifndef __ALIGN
5 #define __ALIGN .align 4
6 #define __ALIGN_STR ".align 4"
7 #endif
9 /*
10 * In parisc assembly a semicolon marks a comment while a
11 * exclamation mark is used to seperate independend lines.
13 #define ENTRY(name) \
14 .export name !\
15 ALIGN !\
16 name:
18 #ifdef CONFIG_64BIT
19 #define ENDPROC(name) \
20 END(name)
21 #else
22 #define ENDPROC(name) \
23 .type name, @function !\
24 END(name)
25 #endif
28 #endif /* __ASM_PARISC_LINKAGE_H */