projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65655b5
)
MIPS: Fix a typo in watchpoint register structure.
author
David Daney
<ddaney@caviumnetworks.com>
Wed, 24 Dec 2008 23:44:26 +0000
(15:44 -0800)
committer
Ralf Baechle
<ralf@linux-mips.org>
Fri, 30 Jan 2009 21:32:58 +0000
(21:32 +0000)
This fixes the ptrace ABI for watch registers, and should allow 64bit
kernels to use the watch register support.
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/ptrace.h
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/include/asm/ptrace.h
b/arch/mips/include/asm/ptrace.h
index 1f30d16d46697dcccdd4188524f4eaae91a6c5a9..ce47118e52b70e7265dab3caa00c84f2542cfafb 100644
(file)
--- a/
arch/mips/include/asm/ptrace.h
+++ b/
arch/mips/include/asm/ptrace.h
@@
-105,7
+105,7
@@
struct pt_watch_regs {
enum pt_watch_style style;
union {
struct mips32_watch_regs mips32;
- struct mips
32
_watch_regs mips64;
+ struct mips
64
_watch_regs mips64;
};
};