Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 258186
b: refs/heads/master
c: 8b41861
h: refs/heads/master
v: v3
  • Loading branch information
Russell King committed Jun 30, 2011
1 parent 9844577 commit b5900fe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b059bdc39321696fe8f344acb7117d57fbd7b475
refs/heads/master: 8b4186160b7894ca4583f702a562856d5d9e9118
2 changes: 1 addition & 1 deletion trunk/arch/arm/kernel/entry-armv.S
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
.endm

.macro pabt_helper
mov r0, r4 @ pass address of aborted instruction.
@ PABORT handler takes fault address in r4
#ifdef MULTI_PABORT
ldr ip, .LCprocfns
mov lr, pc
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/arm/mm/pabort-legacy.S
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/*
* Function: legacy_pabort
*
* Params : r0 = address of aborted instruction
* Params : r4 = address of aborted instruction
*
* Returns : r0 = address of abort
* : r1 = Simulated IFSR with section translation fault status
Expand All @@ -14,6 +14,7 @@

.align 5
ENTRY(legacy_pabort)
mov r0, r4
mov r1, #5
mov pc, lr
ENDPROC(legacy_pabort)
3 changes: 2 additions & 1 deletion trunk/arch/arm/mm/pabort-v6.S
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/*
* Function: v6_pabort
*
* Params : r0 = address of aborted instruction
* Params : r4 = address of aborted instruction
*
* Returns : r0 = address of abort
* : r1 = IFSR
Expand All @@ -14,6 +14,7 @@

.align 5
ENTRY(v6_pabort)
mov r0, r4
mrc p15, 0, r1, c5, c0, 1 @ get IFSR
mov pc, lr
ENDPROC(v6_pabort)
2 changes: 1 addition & 1 deletion trunk/arch/arm/mm/pabort-v7.S
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/*
* Function: v6_pabort
*
* Params : r0 = address of aborted instruction
* Params : r4 = address of aborted instruction
*
* Returns : r0 = address of abort
* : r1 = IFSR
Expand Down

0 comments on commit b5900fe

Please sign in to comment.