projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5d7eb9
)
[MIPS] Fix invalid semicolon after if statement
author
Ilpo Järvinen
<ilpo.jarvinen@helsinki.fi>
Wed, 15 Aug 2007 22:03:01 +0000
(
01:03
+0300)
committer
Ralf Baechle
<ralf@linux-mips.org>
Mon, 27 Aug 2007 01:16:58 +0000
(
02:16
+0100)
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/irixsig.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/irixsig.c
b/arch/mips/kernel/irixsig.c
index 6980deb6dced2b5d165988048a06e2fcd4dd23ef..28b2a8f00911eb6781ca683f533981954c4f64a7 100644
(file)
--- a/
arch/mips/kernel/irixsig.c
+++ b/
arch/mips/kernel/irixsig.c
@@
-725,7
+725,7
@@
asmlinkage int irix_getcontext(struct pt_regs *regs)
current->comm, current->pid, ctx);
#endif
- if (!access_ok(VERIFY_WRITE, ctx, sizeof(*ctx)))
;
+ if (!access_ok(VERIFY_WRITE, ctx, sizeof(*ctx)))
return -EFAULT;
error = __put_user(current->thread.irix_oldctx, &ctx->link);