diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-04-29 06:47:34 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-04-29 06:47:34 +0000 |
commit | 0e73b8a0a9d8a08d6078588a3402449d67219d8f (patch) | |
tree | 4980e8b79d858009adb4f72cb4cfc13c09039c73 /firmware/target | |
parent | 2bbacf89fea9f5613fd884b57809070da5b8c925 (diff) |
Remove wrong usage of '.global'. These symbols are imported, not exported.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17290 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target')
-rw-r--r-- | firmware/target/arm/crt0-pp.S | 5 | ||||
-rw-r--r-- | firmware/target/arm/imx31/crt0.S | 1 | ||||
-rw-r--r-- | firmware/target/arm/pnx0101/crt0-pnx0101.S | 6 | ||||
-rw-r--r-- | firmware/target/arm/tcc780x/crt0.S | 6 | ||||
-rwxr-xr-x | firmware/target/arm/tms320dm320/crt0.S | 6 |
5 files changed, 0 insertions, 24 deletions
diff --git a/firmware/target/arm/crt0-pp.S b/firmware/target/arm/crt0-pp.S index dac666ca1c..a0ec3a623f 100644 --- a/firmware/target/arm/crt0-pp.S +++ b/firmware/target/arm/crt0-pp.S @@ -340,11 +340,6 @@ vectors: .text -#ifndef STUB - .global irq - .global UIE -#endif - /* All illegal exceptions call into UIE with exception address as first parameter. This is calculated differently depending on which exception we're in. Second parameter is exception number, used for a string lookup diff --git a/firmware/target/arm/imx31/crt0.S b/firmware/target/arm/imx31/crt0.S index d982b91608..bc63a7d085 100644 --- a/firmware/target/arm/imx31/crt0.S +++ b/firmware/target/arm/imx31/crt0.S @@ -317,7 +317,6 @@ remap_end: #endif /* BOOTLOADER */ .text - .global UIE /* All illegal exceptions call into UIE with exception address as first * parameter. This is calculated differently depending on which exception diff --git a/firmware/target/arm/pnx0101/crt0-pnx0101.S b/firmware/target/arm/pnx0101/crt0-pnx0101.S index d11546edaa..68a5f534bd 100644 --- a/firmware/target/arm/pnx0101/crt0-pnx0101.S +++ b/firmware/target/arm/pnx0101/crt0-pnx0101.S @@ -166,12 +166,6 @@ vectors: .text -#ifndef STUB - .global irq - .global fiq - .global UIE -#endif - /* All illegal exceptions call into UIE with exception address as first parameter. This is calculated differently depending on which exception we're in. Second parameter is exception number, used for a string lookup diff --git a/firmware/target/arm/tcc780x/crt0.S b/firmware/target/arm/tcc780x/crt0.S index af5bd44192..cef27f1051 100644 --- a/firmware/target/arm/tcc780x/crt0.S +++ b/firmware/target/arm/tcc780x/crt0.S @@ -267,12 +267,6 @@ vectors: .text -#if !defined(STUB) - .global irq - .global fiq - .global UIE -#endif - /* All illegal exceptions call into UIE with exception address as first parameter. This is calculated differently depending on which exception we're in. Second parameter is exception number, used for a string lookup diff --git a/firmware/target/arm/tms320dm320/crt0.S b/firmware/target/arm/tms320dm320/crt0.S index 8c3d36e086..5729357f12 100755 --- a/firmware/target/arm/tms320dm320/crt0.S +++ b/firmware/target/arm/tms320dm320/crt0.S @@ -202,12 +202,6 @@ vectors: .text -#if !defined(STUB) - .global irq - .global fiq - .global UIE -#endif - /* All illegal exceptions call into UIE with exception address as first parameter. This is calculated differently depending on which exception we're in. Second parameter is exception number, used for a string lookup |