summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-12-14 23:58:22 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-12-14 23:58:22 +0000
commit0c291bc9d8c4138d7bc3dc507df93d8054eda695 (patch)
treef4b97fe125fd0d1bbdba2008fdeb58d3edb8a4f7
parentPatch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to rename all (diff)
downloadrtems-0c291bc9d8c4138d7bc3dc507df93d8054eda695.tar.bz2
Switch from .s to .S on include
-rw-r--r--c/src/exec/score/cpu/powerpc/cpu_asm.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/score/cpu/powerpc/cpu_asm.S b/c/src/exec/score/cpu/powerpc/cpu_asm.S
index 7370764607..a377fa5d2a 100644
--- a/c/src/exec/score/cpu/powerpc/cpu_asm.S
+++ b/c/src/exec/score/cpu/powerpc/cpu_asm.S
@@ -761,7 +761,7 @@ PROC (_ISR_Handler):
#define MTMSR(x) mtspr srr1, x
#define MFMSR(x) mfspr x, srr1
- #include "irq_stub.s"
+ #include "irq_stub.S"
rfi
#if (PPC_HAS_RFCI == 1)
@@ -790,7 +790,7 @@ PROC (_ISR_HandlerC):
#define MFPC(x) mfspr x, srr2
#define MTMSR(x) mtspr srr3, x
#define MFMSR(x) mfspr x, srr3
- #include "irq_stub.s"
+ #include "irq_stub.S"
rfci
#endif