-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 36686 b: refs/heads/master c: 0f45d7f h: refs/heads/master v: v3
- Loading branch information
Hyok S. Choi
authored and
Russell King
committed
Sep 28, 2006
1 parent
bb40922
commit f3266fa
Showing
8 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 6cc7cbef948ea2660cc40d7aab090a479f7db6a2 | ||
refs/heads/master: 0f45d7f36b766cb668cebfb5d4d2f67b4a8676ba |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#include <linux/linkage.h> | ||
#include <asm/assembler.h> | ||
/* | ||
* Function: nommu_early_abort | ||
* | ||
* Params : r2 = address of aborted instruction | ||
* : r3 = saved SPSR | ||
* | ||
* Returns : r0 = 0 (abort address) | ||
* : r1 = 0 (FSR) | ||
* | ||
* Note: There is no FSR/FAR on !CPU_CP15_MMU cores. | ||
* Just fill zero into the registers. | ||
*/ | ||
.align 5 | ||
ENTRY(nommu_early_abort) | ||
mov r0, #0 @ clear r0, r1 (no FSR/FAR) | ||
mov r1, #0 | ||
mov pc, lr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters