]> Pileus Git - ~andy/linux/blob - include/asm-parisc/linkage.h
[PARISC] implement standard ENTRY(), END() and ENDPROC()
[~andy/linux] / include / asm-parisc / linkage.h
1 #ifndef __ASM_PARISC_LINKAGE_H
2 #define __ASM_PARISC_LINKAGE_H
3
4 #ifndef __ALIGN
5 #define __ALIGN         .align 4
6 #define __ALIGN_STR     ".align 4"
7 #endif
8
9 /*
10  * In parisc assembly a semicolon marks a comment.
11  * Because of that we use an exclamation mark to seperate independend lines.
12  */
13 #define ENTRY(name) \
14         .globl name !\
15         ALIGN !\
16 name:
17
18 #endif  /* __ASM_PARISC_LINKAGE_H */