From: Jesper Juhl Get rid of needless casting of kmalloc() return value in net/ Signed-off-by: Jesper Juhl Cc: "David S. Miller" Signed-off-by: Andrew Morton --- net/bluetooth/hci_conn.c | 2 +- net/sunrpc/svc.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff -puN net/bluetooth/hci_conn.c~net-remove-unneeded-kmalloc-return-value-casts net/bluetooth/hci_conn.c --- devel/net/bluetooth/hci_conn.c~net-remove-unneeded-kmalloc-return-value-casts 2005-12-12 01:22:50.000000000 -0800 +++ devel-akpm/net/bluetooth/hci_conn.c 2005-12-12 01:22:50.000000000 -0800 @@ -403,7 +403,7 @@ int hci_get_conn_list(void __user *arg) size = sizeof(req) + req.conn_num * sizeof(*ci); - if (!(cl = (void *) kmalloc(size, GFP_KERNEL))) + if (!(cl = kmalloc(size, GFP_KERNEL))) return -ENOMEM; if (!(hdev = hci_dev_get(req.dev_id))) { diff -puN net/sunrpc/svc.c~net-remove-unneeded-kmalloc-return-value-casts net/sunrpc/svc.c --- devel/net/sunrpc/svc.c~net-remove-unneeded-kmalloc-return-value-casts 2005-12-12 01:22:50.000000000 -0800 +++ devel-akpm/net/sunrpc/svc.c 2005-12-12 01:22:50.000000000 -0800 @@ -167,8 +167,8 @@ svc_create_thread(svc_thread_fn func, st memset(rqstp, 0, sizeof(*rqstp)); init_waitqueue_head(&rqstp->rq_wait); - if (!(rqstp->rq_argp = (u32 *) kmalloc(serv->sv_xdrsize, GFP_KERNEL)) - || !(rqstp->rq_resp = (u32 *) kmalloc(serv->sv_xdrsize, GFP_KERNEL)) + if (!(rqstp->rq_argp = kmalloc(serv->sv_xdrsize, GFP_KERNEL)) + || !(rqstp->rq_resp = kmalloc(serv->sv_xdrsize, GFP_KERNEL)) || !svc_init_buffer(rqstp, serv->sv_bufsz)) goto out_thread; _