diff options
author | Will Deacon <will.deacon@arm.com> | 2010-11-25 12:59:31 +0000 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2010-12-06 11:55:57 +0000 |
commit | ce9b1b09520789223f72a9fefd5f0e329f8d89d0 (patch) | |
tree | b834c7a9d7a94812e4fe1e8e3a1b0fef720b04b7 /arch/arm/kernel | |
parent | 3ce70b2e24cd35cc9f2df8cf5205b8ab4e6178e1 (diff) | |
download | talos-obmc-linux-ce9b1b09520789223f72a9fefd5f0e329f8d89d0.tar.gz talos-obmc-linux-ce9b1b09520789223f72a9fefd5f0e329f8d89d0.zip |
ARM: ptrace: fix style issue with hw_breakpoint interface
This patch fixes a trivial style issue in ptrace.c.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/ptrace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c index 3e97483abcf0..19c6816db61e 100644 --- a/arch/arm/kernel/ptrace.c +++ b/arch/arm/kernel/ptrace.c @@ -1060,8 +1060,8 @@ static int ptrace_sethbpregs(struct task_struct *tsk, long num, goto out; if ((gen_type & implied_type) != gen_type) { - ret = -EINVAL; - goto out; + ret = -EINVAL; + goto out; } attr.bp_len = gen_len; |