You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
c5e7655297
Use the macros in entry.S Signed-off-by: Helge Deller <deller@gmx.de> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
19 lines
382 B
C
19 lines
382 B
C
#ifndef __ASM_PARISC_LINKAGE_H
|
|
#define __ASM_PARISC_LINKAGE_H
|
|
|
|
#ifndef __ALIGN
|
|
#define __ALIGN .align 4
|
|
#define __ALIGN_STR ".align 4"
|
|
#endif
|
|
|
|
/*
|
|
* In parisc assembly a semicolon marks a comment.
|
|
* Because of that we use an exclamation mark to seperate independend lines.
|
|
*/
|
|
#define ENTRY(name) \
|
|
.globl name !\
|
|
ALIGN !\
|
|
name:
|
|
|
|
#endif /* __ASM_PARISC_LINKAGE_H */
|