diff options
author | Mike Frysinger <michael.frysinger@analog.com> | 2007-06-11 03:31:30 -0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2007-06-11 03:31:30 -0400 |
commit | 51be24c351bc9ee4937121100adb098eeb1effdd (patch) | |
tree | b766c400cab7c51bfc7672cfbc3402bc83be5fb3 /arch/blackfin/mach-common/cacheinit.S | |
parent | 52a078120c33b06a9abb721357adaafc3b55b7c1 (diff) |
Blackfin arch: add proper ENDPROC()
add proper ENDPROC() to close out assembly functions
so size/type is set properly in the final ELF image
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch/blackfin/mach-common/cacheinit.S')
-rw-r--r-- | arch/blackfin/mach-common/cacheinit.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/blackfin/mach-common/cacheinit.S b/arch/blackfin/mach-common/cacheinit.S index 8c17f099e5eb..7924a90d9658 100644 --- a/arch/blackfin/mach-common/cacheinit.S +++ b/arch/blackfin/mach-common/cacheinit.S | |||
@@ -86,6 +86,8 @@ ENTRY(_bfin_icache_init) | |||
86 | SSYNC; | 86 | SSYNC; |
87 | STI R2; | 87 | STI R2; |
88 | RTS; | 88 | RTS; |
89 | |||
90 | ENDPROC(_bfin_icache_init) | ||
89 | #endif | 91 | #endif |
90 | 92 | ||
91 | #if defined(CONFIG_BLKFIN_DCACHE) | 93 | #if defined(CONFIG_BLKFIN_DCACHE) |
@@ -134,4 +136,6 @@ ENTRY(_bfin_dcache_init) | |||
134 | SSYNC; | 136 | SSYNC; |
135 | STI R2; | 137 | STI R2; |
136 | RTS; | 138 | RTS; |
139 | |||
140 | ENDPROC(_bfin_dcache_init) | ||
137 | #endif | 141 | #endif |