aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis@issaris.org>2006-07-21 15:52:20 -0700
committerDavid S. Miller <davem@davemloft.net>2006-07-21 15:52:20 -0700
commit9df3f3d28bca0157e2bab2f3171d2ad4f0930634 (patch)
treeb7cc30698bd9e30846bdce547115ad409ef3d97f /net/tipc
parent[IPV4]: Fix nexthop realm dumping for multipath routes (diff)
downloadlinux-dev-9df3f3d28bca0157e2bab2f3171d2ad4f0930634.tar.xz
linux-dev-9df3f3d28bca0157e2bab2f3171d2ad4f0930634.zip
[TIPC]: Removing useless casts
Removing useless casts Signed-off-by: Panagiotis Issaris <takis@issaris.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/discover.c2
-rw-r--r--net/tipc/ref.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/discover.c b/net/tipc/discover.c
index 2b8441203120..ee94de92ae99 100644
--- a/net/tipc/discover.c
+++ b/net/tipc/discover.c
@@ -295,7 +295,7 @@ struct link_req *tipc_disc_init_link_req(struct bearer *b_ptr,
{
struct link_req *req;
- req = (struct link_req *)kmalloc(sizeof(*req), GFP_ATOMIC);
+ req = kmalloc(sizeof(*req), GFP_ATOMIC);
if (!req)
return NULL;
diff --git a/net/tipc/ref.c b/net/tipc/ref.c
index 596d3c8ff750..e6d6ae22ea49 100644
--- a/net/tipc/ref.c
+++ b/net/tipc/ref.c
@@ -79,7 +79,7 @@ int tipc_ref_table_init(u32 requested_size, u32 start)
while (sz < requested_size) {
sz <<= 1;
}
- table = (struct reference *)vmalloc(sz * sizeof(struct reference));
+ table = vmalloc(sz * sizeof(*table));
if (table == NULL)
return -ENOMEM;