diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2005-06-16 20:39:12 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:31:26 +0100 |
commit | 260c96738cf30f489108cd0fb3f10dcd11cbb5ca (patch) | |
tree | f9e72b1bf084ad2d38487fa8fc7dae01660dc08e /arch/mips/kernel | |
parent | 778220f7c4a3357f7464a45044fd4937126ba6c5 (diff) |
Mark __die() "noreturn" for real.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/traps.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index 9419a3542c2..b502dc970b3 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c @@ -254,8 +254,9 @@ void show_registers(struct pt_regs *regs) static DEFINE_SPINLOCK(die_lock); -NORET_TYPE void __die(const char * str, struct pt_regs * regs, - const char * file, const char * func, unsigned long line) +NORET_TYPE void ATTRIB_NORET __die(const char * str, struct pt_regs * regs, + const char * file, const char * func, + unsigned long line) { static int die_counter; |