Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

MIPS: Fix a typo in watchpoint register structure.

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>

authored by

David Daney and committed by
Ralf Baechle
7adbedaf 65655b5a

+1 -1
+1 -1
arch/mips/include/asm/ptrace.h
··· 105 105 enum pt_watch_style style; 106 106 union { 107 107 struct mips32_watch_regs mips32; 108 - struct mips32_watch_regs mips64; 108 + struct mips64_watch_regs mips64; 109 109 }; 110 110 }; 111 111