diff options
author | Michael Neuling <mikey@neuling.org> | 2012-09-05 15:17:47 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-09-06 21:44:36 -0400 |
commit | ab046a937629172d5da2bbf4867d89507280759f (patch) | |
tree | ff9aaa8eff9e1ca02e30cda6655e1d34ee523ebf | |
parent | 4bc77a5ed215b4ec9cc39d5f55323b2e68000055 (diff) |
powerpc: Pack arch_hw_breakpoint to avoid holes in struct
No functional change
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/include/asm/hw_breakpoint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/include/asm/hw_breakpoint.h b/arch/powerpc/include/asm/hw_breakpoint.h index be04330af751..39b323e80c30 100644 --- a/arch/powerpc/include/asm/hw_breakpoint.h +++ b/arch/powerpc/include/asm/hw_breakpoint.h | |||
@@ -27,10 +27,10 @@ | |||
27 | #ifdef CONFIG_HAVE_HW_BREAKPOINT | 27 | #ifdef CONFIG_HAVE_HW_BREAKPOINT |
28 | 28 | ||
29 | struct arch_hw_breakpoint { | 29 | struct arch_hw_breakpoint { |
30 | bool extraneous_interrupt; | ||
31 | u8 len; /* length of the target data symbol */ | ||
32 | int type; | ||
33 | unsigned long address; | 30 | unsigned long address; |
31 | int type; | ||
32 | u8 len; /* length of the target data symbol */ | ||
33 | bool extraneous_interrupt; | ||
34 | }; | 34 | }; |
35 | 35 | ||
36 | #include <linux/kdebug.h> | 36 | #include <linux/kdebug.h> |