-
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: 272882 b: refs/heads/master c: 2f41c36 h: refs/heads/master v: v3
- Loading branch information
Will Deacon
committed
Oct 17, 2011
1 parent
84db5c3
commit 044f5ba
Showing
24 changed files
with
400 additions
and
197 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: f350b86121c7a004a5f866333fa1d23fe30263a6 | ||
refs/heads/master: 2f41c36b07af71bb308ff8f1739481b022476080 |
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
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 @@ | ||
/* | ||
* Annotations for marking C functions as exception handlers. | ||
* | ||
* These should only be used for C functions that are called from the low | ||
* level exception entry code and not any intervening C code. | ||
*/ | ||
#ifndef __ASM_ARM_EXCEPTION_H | ||
#define __ASM_ARM_EXCEPTION_H | ||
|
||
#include <linux/ftrace.h> | ||
|
||
#define __exception __attribute__((section(".exception.text"))) | ||
#ifdef CONFIG_FUNCTION_GRAPH_TRACER | ||
#define __exception_irq_entry __irq_entry | ||
#else | ||
#define __exception_irq_entry __exception | ||
#endif | ||
|
||
#endif /* __ASM_ARM_EXCEPTION_H */ |
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
Oops, something went wrong.