aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bsd_comp.c
diff options
context:
space:
mode:
authorJesper Juhl <jesper.juhl@gmail.com>2007-08-24 23:24:43 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-08-26 18:35:45 -0700
commitc573f73ce95d7e421cb4b9928dd41ac9518fcccf (patch)
treea2883fb046aab1e4c9ed647e59e441c3a9d41da9 /drivers/net/bsd_comp.c
parent[IRDA]: Do not do pointless kmalloc return value cast in KingSun driver (diff)
downloadlinux-dev-c573f73ce95d7e421cb4b9928dd41ac9518fcccf.tar.xz
linux-dev-c573f73ce95d7e421cb4b9928dd41ac9518fcccf.zip
[NET]: Avoid pointless allocation casts in BSD compression module
The general kernel memory allocation functions return void pointers and there is no need to cast their return values. Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bsd_comp.c')
-rw-r--r--drivers/net/bsd_comp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/bsd_comp.c b/drivers/net/bsd_comp.c
index 202d4a4ef751..88edb986691a 100644
--- a/drivers/net/bsd_comp.c
+++ b/drivers/net/bsd_comp.c
@@ -406,8 +406,7 @@ static void *bsd_alloc (unsigned char *options, int opt_len, int decomp)
* Allocate space for the dictionary. This may be more than one page in
* length.
*/
- db->dict = (struct bsd_dict *) vmalloc (hsize *
- sizeof (struct bsd_dict));
+ db->dict = vmalloc(hsize * sizeof(struct bsd_dict));
if (!db->dict)
{
bsd_free (db);
@@ -426,8 +425,7 @@ static void *bsd_alloc (unsigned char *options, int opt_len, int decomp)
*/
else
{
- db->lens = (unsigned short *) vmalloc ((maxmaxcode + 1) *
- sizeof (db->lens[0]));
+ db->lens = vmalloc((maxmaxcode + 1) * sizeof(db->lens[0]));
if (!db->lens)
{
bsd_free (db);