diff options
author | Michael Neuling <mikey@neuling.org> | 2012-09-05 19:17:47 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-09-07 11:44:36 +1000 |
commit | ab046a937629172d5da2bbf4867d89507280759f (patch) | |
tree | ff9aaa8eff9e1ca02e30cda6655e1d34ee523ebf /arch/powerpc/include | |
parent | 4bc77a5ed215b4ec9cc39d5f55323b2e68000055 (diff) | |
download | blackbird-obmc-linux-ab046a937629172d5da2bbf4867d89507280759f.tar.gz blackbird-obmc-linux-ab046a937629172d5da2bbf4867d89507280759f.zip |
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')
-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 @@ #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> |