| To: | torvalds@linux-foundation.org, akpm@linux-foundation.org |
|---|---|
| Subject: | [PATCH 3/5] MIPS: Convert BUG() to use unreachable() |
| From: | David Daney <ddaney@caviumnetworks.com> |
| Date: | Fri, 4 Dec 2009 17:44:52 -0800 |
| Cc: | linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, David Daney <ddaney@caviumnetworks.com>, Ralf Baechle <ralf@linux-mips.org>, linux-mips@linux-mips.org |
| In-reply-to: | <4B19BAD3.1000808@caviumnetworks.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <4B19BAD3.1000808@caviumnetworks.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
Use the new unreachable() macro instead of while(1);
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Acked-by: Ralf Baechle <ralf@linux-mips.org>
CC: Ralf Baechle <ralf@linux-mips.org>
CC: linux-mips@linux-mips.org
---
arch/mips/include/asm/bug.h | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/arch/mips/include/asm/bug.h b/arch/mips/include/asm/bug.h
index 6cf29c2..540c98a 100644
--- a/arch/mips/include/asm/bug.h
+++ b/arch/mips/include/asm/bug.h
@@ -11,9 +11,7 @@
static inline void __noreturn BUG(void)
{
__asm__ __volatile__("break %0" : : "i" (BRK_BUG));
- /* Fool GCC into thinking the function doesn't return. */
- while (1)
- ;
+ unreachable();
}
#define HAVE_ARCH_BUG
--
1.6.2.5
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: problem bring up initramfs and busybox, myuboot |
|---|---|
| Next by Date: | Re: [PATCH 1/3] [MIPS] mipssim: remove unused code, Ralf Baechle |
| Previous by Thread: | Re: problem bring up initramfs and busybox, myuboot |
| Next by Thread: | Re: [PATCH 1/3] [MIPS] mipssim: remove unused code, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |