David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 1 | /* MN10300 Kernel bug reporting |
| 2 | * |
| 3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public Licence |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the Licence, or (at your option) any later version. |
| 10 | */ |
| 11 | #ifndef _ASM_BUG_H |
| 12 | #define _ASM_BUG_H |
| 13 | |
David Howells | 616df13 | 2009-04-15 19:34:51 +0100 | [diff] [blame] | 14 | #ifdef CONFIG_BUG |
| 15 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 16 | /* |
| 17 | * Tell the user there is some problem. |
| 18 | */ |
David Howells | 616df13 | 2009-04-15 19:34:51 +0100 | [diff] [blame] | 19 | #define BUG() \ |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 20 | do { \ |
| 21 | asm volatile( \ |
| 22 | " syscall 15 \n" \ |
| 23 | "0: \n" \ |
Josh Poimboeuf | 325cdac | 2017-07-15 00:10:58 -0500 | [diff] [blame] | 24 | " .section __bug_table,\"aw\" \n" \ |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 25 | " .long 0b,%0,%1 \n" \ |
| 26 | " .previous \n" \ |
| 27 | : \ |
| 28 | : "i"(__FILE__), "i"(__LINE__) \ |
| 29 | ); \ |
David Howells | 616df13 | 2009-04-15 19:34:51 +0100 | [diff] [blame] | 30 | } while (1) |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 31 | |
| 32 | #define HAVE_ARCH_BUG |
David Howells | 616df13 | 2009-04-15 19:34:51 +0100 | [diff] [blame] | 33 | #endif /* CONFIG_BUG */ |
| 34 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 35 | #include <asm-generic/bug.h> |
| 36 | |
| 37 | #endif /* _ASM_BUG_H */ |