diff options
-rw-r--r-- | include/asm-powerpc/bug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-powerpc/bug.h b/include/asm-powerpc/bug.h index e4d028e87020..943e3d7dbcc7 100644 --- a/include/asm-powerpc/bug.h +++ b/include/asm-powerpc/bug.h | |||
@@ -13,7 +13,7 @@ | |||
13 | 13 | ||
14 | #ifdef __powerpc64__ | 14 | #ifdef __powerpc64__ |
15 | #define BUG_TABLE_ENTRY(label, line, file, func) \ | 15 | #define BUG_TABLE_ENTRY(label, line, file, func) \ |
16 | ".llong " #label "\n .long " #line "\n .llong " #file ", " #func "\n" | 16 | ".llong " #label ", " #line ", " #file ", " #func "\n" |
17 | #define TRAP_OP(ra, rb) "1: tdnei " #ra ", " #rb "\n" | 17 | #define TRAP_OP(ra, rb) "1: tdnei " #ra ", " #rb "\n" |
18 | #define DATA_TYPE long long | 18 | #define DATA_TYPE long long |
19 | #else | 19 | #else |
@@ -25,7 +25,7 @@ | |||
25 | 25 | ||
26 | struct bug_entry { | 26 | struct bug_entry { |
27 | unsigned long bug_addr; | 27 | unsigned long bug_addr; |
28 | int line; | 28 | long line; |
29 | const char *file; | 29 | const char *file; |
30 | const char *function; | 30 | const char *function; |
31 | }; | 31 | }; |