aboutsummaryrefslogtreecommitdiffstats
path: root/net/ax25
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-09-12 14:23:52 -0700
committerDavid S. Miller <davem@davemloft.net>2005-09-12 14:23:52 -0700
commit9b37ee75858ce35cf3c0e4724acaf4efabb45687 (patch)
tree5ea2b68ca964fa7c5e64590d7c72b4dd5cc79762 /net/ax25
parent[NETROM]: statistics fix (diff)
downloadlinux-dev-9b37ee75858ce35cf3c0e4724acaf4efabb45687.tar.xz
linux-dev-9b37ee75858ce35cf3c0e4724acaf4efabb45687.zip
[NETROM/AX.25/ROSE]: Remove useless tests
Remove error tests that have already been performed by the caller. Signed-off-by: Ralf Baechle DL5RB <ralf@linux-mips.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ax25')
-rw-r--r--net/ax25/af_ax25.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/ax25/af_ax25.c b/net/ax25/af_ax25.c
index 17f192b77867..9c487311e0a9 100644
--- a/net/ax25/af_ax25.c
+++ b/net/ax25/af_ax25.c
@@ -1700,11 +1700,7 @@ static int ax25_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
}
case SIOCGSTAMP:
- if (sk != NULL) {
- res = sock_get_timestamp(sk, argp);
- break;
- }
- res = -EINVAL;
+ res = sock_get_timestamp(sk, argp);
break;
case SIOCAX25ADDUID: /* Add a uid to the uid/call map table */