Browse Source

mtd: remove unnecessary casts of void ptr returning alloc function return 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>
Jesper Juhl 14 years ago
parent
commit
ce4a37f7c9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/mtd/maps/tqm8xxl.c

+ 1 - 1
drivers/mtd/maps/tqm8xxl.c

@@ -139,7 +139,7 @@ static int __init init_tqm_mtd(void)
 			goto error_mem;
 			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) {
 		if (!map_banks[idx]->name) {
 			ret = -ENOMEM;
 			ret = -ENOMEM;