We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b62b37d commit a7fde0bCopy full SHA for a7fde0b
arch/parisc/kernel/unwind.c
@@ -24,12 +24,13 @@
24
#include <asm/unwind.h>
25
#include <asm/switch_to.h>
26
#include <asm/sections.h>
27
+#include <asm/ftrace.h>
28
29
/* #define DEBUG 1 */
30
#ifdef DEBUG
31
#define dbg(x...) pr_debug(x)
32
#else
-#define dbg(x...)
33
+#define dbg(x...) do { } while (0)
34
#endif
35
36
#define KERNEL_START (KERNEL_BINARY_TEXT_START)
@@ -179,7 +180,7 @@ void unwind_table_remove(struct unwind_table *table)
179
180
/* Called from setup_arch to import the kernel unwind info */
181
int __init unwind_init(void)
182
{
- long start, stop;
183
+ long start __maybe_unused, stop __maybe_unused;
184
register unsigned long gp __asm__ ("r27");
185
186
start = (long)&__start___unwind[0];
0 commit comments