summaryrefslogtreecommitdiff
path: root/arch/powerpc/include/asm/hw_breakpoint.h
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2012-09-05 19:17:47 (GMT)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2012-09-07 01:44:36 (GMT)
commitab046a937629172d5da2bbf4867d89507280759f (patch)
treeff9aaa8eff9e1ca02e30cda6655e1d34ee523ebf /arch/powerpc/include/asm/hw_breakpoint.h
parent4bc77a5ed215b4ec9cc39d5f55323b2e68000055 (diff)
downloadlinux-fsl-qoriq-ab046a937629172d5da2bbf4867d89507280759f.tar.xz
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>
Diffstat (limited to 'arch/powerpc/include/asm/hw_breakpoint.h')
-rw-r--r--arch/powerpc/include/asm/hw_breakpoint.h6
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 be04330..39b323e 100644
--- a/arch/powerpc/include/asm/hw_breakpoint.h
+++ b/arch/powerpc/include/asm/hw_breakpoint.h
@@ -27,10 +27,10 @@
#ifdef CONFIG_HAVE_HW_BREAKPOINT
struct arch_hw_breakpoint {
- bool extraneous_interrupt;
- u8 len; /* length of the target data symbol */
- int type;
unsigned long address;
+ int type;
+ u8 len; /* length of the target data symbol */
+ bool extraneous_interrupt;
};
#include <linux/kdebug.h>