-
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
Adrian Bunk
authored and
Thomas Gleixner
committed
Oct 17, 2007
1 parent
fa8e4b5
commit cd6eb15
Showing
10 changed files
with
32 additions
and
35 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: 3f4ed1511dc8c71073bb7d220ee62eedd8e8aeec | ||
refs/heads/master: 7e02cb941ddc129158c276648c10a69dca7d36d3 |
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
2 changes: 1 addition & 1 deletion
2
trunk/include/asm-um/alternative-asm.i → trunk/include/asm-um/alternative-asm.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#ifndef __UM_ALTERNATIVE_ASM_I | ||
#define __UM_ALTERNATIVE_ASM_I | ||
|
||
#include "asm/arch/alternative-asm.i" | ||
#include "asm/arch/alternative-asm.h" | ||
|
||
#endif |
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,6 +1,6 @@ | ||
#ifndef __UM_FRAME_I | ||
#define __UM_FRAME_I | ||
|
||
#include "asm/arch/frame.i" | ||
#include "asm/arch/frame.h" | ||
|
||
#endif |
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,22 @@ | ||
#ifdef __ASSEMBLY__ | ||
|
||
#ifdef CONFIG_X86_32 | ||
# define X86_ALIGN .long | ||
#else | ||
# define X86_ALIGN .quad | ||
#endif | ||
|
||
#ifdef CONFIG_SMP | ||
.macro LOCK_PREFIX | ||
1: lock | ||
.section .smp_locks,"a" | ||
.align 4 | ||
X86_ALIGN 1b | ||
.previous | ||
.endm | ||
#else | ||
.macro LOCK_PREFIX | ||
.endm | ||
#endif | ||
|
||
#endif /* __ASSEMBLY__ */ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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