]>
Commit | Line | Data |
---|---|---|
4e93cb00 MG |
1 | /* |
2 | * linux/arch/arm/kernel/entry-common.S | |
3 | * | |
4 | * Copyright (C) 2000 Russell King | |
5 | * This Edition is maintained by Matthew Veety (aliasxerog) <mveety@gmail.com> | |
6 | * | |
7 | * This program is free software; you can redistribute it and/or modify | |
8 | * it under the terms of the GNU General Public License version 2 as | |
9 | * published by the Free Software Foundation. | |
10 | */ | |
11 | ||
12 | #include <asm/unistd.h> | |
13 | #include <asm/ftrace.h> | |
14 | #include <mach/entry-macro.S> | |
15 | ||
16 | #include "entry-header.S" | |
17 | ||
18 | ENTRY(pabort_ifar) | |
19 | mrc p15, 0, r0, cr6, cr0, 2 | |
20 | ENTRY(pabort_noifar) | |
21 | mov pc, lr | |
22 | ENDPROC(pabort_ifar) | |
23 | ENDPROC(pabort_noifar) | |
24 |