Skip to content

Commit

Permalink
mtd: remove unnecessary casts of void ptr returning alloc function re…
Browse files Browse the repository at this point in the history
…turn values

The [vk][cmz]alloc(_node) family of functions return void pointers which
it's completely unnecessary/pointless to cast to other pointer types since
that happens implicitly.

This patch removes such casts from drivers/mtd/

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
Jesper Juhl authored and David Woodhouse committed Dec 3, 2010
1 parent 65ab220 commit ce4a37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mtd/maps/tqm8xxl.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ static int __init init_tqm_mtd(void)
goto error_mem;
}

map_banks[idx]->name = (char *)kmalloc(16, GFP_KERNEL);
map_banks[idx]->name = kmalloc(16, GFP_KERNEL);

if (!map_banks[idx]->name) {
ret = -ENOMEM;
Expand Down

0 comments on commit ce4a37f

Please sign in to comment.