From: Namhyung Kim Date: Wed, 27 Oct 2010 22:33:57 +0000 (-0700) Subject: ptrace: cleanup arch_ptrace() on microblaze X-Git-Tag: v2.6.37-rc1~85^2~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cfd866f6bd1549fb25f826c469120a8eaee4fc1a;p=profile%2Fcommon%2Fkernel-common.git ptrace: cleanup arch_ptrace() on microblaze Remove checking @addr greater than 0 because @addr is now unsigned. Signed-off-by: Namhyung Kim Cc: Michal Simek Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/microblaze/kernel/ptrace.c b/arch/microblaze/kernel/ptrace.c index 3544bc1..05ac8cc 100644 --- a/arch/microblaze/kernel/ptrace.c +++ b/arch/microblaze/kernel/ptrace.c @@ -100,7 +100,7 @@ long arch_ptrace(struct task_struct *child, long request, } else { rval = -EIO; } - } else if (addr >= 0 && addr < PT_SIZE && (addr & 0x3) == 0) { + } else if (addr < PT_SIZE && (addr & 0x3) == 0) { microblaze_reg_t *reg_addr = reg_save_addr(addr, child); if (request == PTRACE_PEEKUSR) val = *reg_addr;