diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2006-01-10 16:08:21 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-01-10 16:08:21 -0500 |
commit | 12fe2c588df77d60dfe13b432f95d00f76b8c969 (patch) | |
tree | 514a23f41aa81d89c5385ba67a58a0144693fbcc /net | |
parent | ea2e90dfcee2c09eff8a180976ace071922663a5 (diff) |
[NET]: Remove unneeded kmalloc() return value casts
Get rid of needless casting of kmalloc() return value in net/
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_conn.c | 2 | ||||
-rw-r--r-- | net/sunrpc/svc.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index a31244e58888..f812ed129e58 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c | |||
@@ -403,7 +403,7 @@ int hci_get_conn_list(void __user *arg) | |||
403 | 403 | ||
404 | size = sizeof(req) + req.conn_num * sizeof(*ci); | 404 | size = sizeof(req) + req.conn_num * sizeof(*ci); |
405 | 405 | ||
406 | if (!(cl = (void *) kmalloc(size, GFP_KERNEL))) | 406 | if (!(cl = kmalloc(size, GFP_KERNEL))) |
407 | return -ENOMEM; | 407 | return -ENOMEM; |
408 | 408 | ||
409 | if (!(hdev = hci_dev_get(req.dev_id))) { | 409 | if (!(hdev = hci_dev_get(req.dev_id))) { |
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index b19cc26fa9c2..a8bd34d47425 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c | |||
@@ -166,8 +166,8 @@ svc_create_thread(svc_thread_fn func, struct svc_serv *serv) | |||
166 | memset(rqstp, 0, sizeof(*rqstp)); | 166 | memset(rqstp, 0, sizeof(*rqstp)); |
167 | init_waitqueue_head(&rqstp->rq_wait); | 167 | init_waitqueue_head(&rqstp->rq_wait); |
168 | 168 | ||
169 | if (!(rqstp->rq_argp = (u32 *) kmalloc(serv->sv_xdrsize, GFP_KERNEL)) | 169 | if (!(rqstp->rq_argp = kmalloc(serv->sv_xdrsize, GFP_KERNEL)) |
170 | || !(rqstp->rq_resp = (u32 *) kmalloc(serv->sv_xdrsize, GFP_KERNEL)) | 170 | || !(rqstp->rq_resp = kmalloc(serv->sv_xdrsize, GFP_KERNEL)) |
171 | || !svc_init_buffer(rqstp, serv->sv_bufsz)) | 171 | || !svc_init_buffer(rqstp, serv->sv_bufsz)) |
172 | goto out_thread; | 172 | goto out_thread; |
173 | 173 | ||