-
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.
- Loading branch information
Catalin Marinas
authored and
Russell King
committed
Jul 2, 2010
1 parent
9a70fb2
commit d835d89
Showing
3 changed files
with
11 additions
and
1 deletion.
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: 00952d8f14447fccfb9560d98999f7489d4fd2df | ||
refs/heads/master: 2503a5ecd86c002506001eba432c524ea009fe7f |
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,8 @@ | ||
/* | ||
* Barriers redefined for RealView ARM11MPCore platforms with L220 cache | ||
* controller to work around hardware errata causing the outer_sync() | ||
* operation to deadlock the system. | ||
*/ | ||
#define mb() dsb() | ||
#define rmb() dmb() | ||
#define wmb() mb() |