Skip to content

Commit

Permalink
[MIPS] Export except_vec_vi_{mori,lui,ori} as text symbols.
Browse files Browse the repository at this point in the history
Otherwise objdump will screw up disassembly.

Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
ralfbaechle committed Mar 19, 2007
1 parent 43e3c88 commit 7df4246
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/mips/kernel/genex.S
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,13 @@ NESTED(except_vec_vi, 0, sp)
* during service by SMTC kernel, we also want to
* pass the IM value to be cleared.
*/
EXPORT(except_vec_vi_mori)
FEXPORT(except_vec_vi_mori)
ori a0, $0, 0
#endif /* CONFIG_MIPS_MT_SMTC */
EXPORT(except_vec_vi_lui)
FEXPORT(except_vec_vi_lui)
lui v0, 0 /* Patched */
j except_vec_vi_handler
EXPORT(except_vec_vi_ori)
FEXPORT(except_vec_vi_ori)
ori v0, 0 /* Patched */
.set pop
END(except_vec_vi)
Expand Down

0 comments on commit 7df4246

Please sign in to comment.