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/lib/ins.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/lib/ins.S')
-rw-r--r-- | arch/blackfin/lib/ins.S | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/blackfin/lib/ins.S b/arch/blackfin/lib/ins.S index 7d5e9846311d..a17cc77ac36f 100644 --- a/arch/blackfin/lib/ins.S +++ b/arch/blackfin/lib/ins.S | |||
@@ -46,7 +46,7 @@ ENTRY(_insl) | |||
46 | .Llong_loop_e: NOP; | 46 | .Llong_loop_e: NOP; |
47 | sti R3; | 47 | sti R3; |
48 | RTS; | 48 | RTS; |
49 | 49 | ENDPROC(_insl) | |
50 | 50 | ||
51 | ENTRY(_insw) | 51 | ENTRY(_insw) |
52 | P0 = R0; /* P0 = port */ | 52 | P0 = R0; /* P0 = port */ |
@@ -61,6 +61,7 @@ ENTRY(_insw) | |||
61 | .Lword_loop_e: NOP; | 61 | .Lword_loop_e: NOP; |
62 | sti R3; | 62 | sti R3; |
63 | RTS; | 63 | RTS; |
64 | ENDPROC(_insw) | ||
64 | 65 | ||
65 | ENTRY(_insb) | 66 | ENTRY(_insb) |
66 | P0 = R0; /* P0 = port */ | 67 | P0 = R0; /* P0 = port */ |
@@ -75,3 +76,4 @@ ENTRY(_insb) | |||
75 | .Lbyte_loop_e: NOP; | 76 | .Lbyte_loop_e: NOP; |
76 | sti R3; | 77 | sti R3; |
77 | RTS; | 78 | RTS; |
79 | ENDPROC(_insb) | ||