ARM: entry: re-allocate registers in irq entry assembly macros
[deliverable/linux.git] / arch / arm / mm / pabort-legacy.S
CommitLineData
4fb28474
KS
1#include <linux/linkage.h>
2#include <asm/assembler.h>
3
4/*
5 * Function: legacy_pabort
6 *
8b418616 7 * Params : r4 = address of aborted instruction
4fb28474
KS
8 *
9 * Returns : r0 = address of abort
10 * : r1 = Simulated IFSR with section translation fault status
11 *
12 * Purpose : obtain information about current prefetch abort.
13 */
14
15 .align 5
16ENTRY(legacy_pabort)
8b418616 17 mov r0, r4
4fb28474
KS
18 mov r1, #5
19 mov pc, lr
20ENDPROC(legacy_pabort)
This page took 0.140404 seconds and 5 git commands to generate.