drivers/message/, i2o: Remove unnecessary casts of void ptr returning alloc function...
authorJesper Juhl <jj@chaosbits.net>
Mon, 8 Nov 2010 23:08:50 +0000 (00:08 +0100)
committerJiri Kosina <jkosina@suse.cz>
Wed, 19 Jan 2011 14:24:57 +0000 (15:24 +0100)
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/message/

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/message/i2o/i2o_config.c

index 7d3cc57..098de2b 100644 (file)
@@ -1044,8 +1044,7 @@ static long i2o_cfg_ioctl(struct file *fp, unsigned int cmd, unsigned long arg)
 
 static int cfg_open(struct inode *inode, struct file *file)
 {
-       struct i2o_cfg_info *tmp =
-           (struct i2o_cfg_info *)kmalloc(sizeof(struct i2o_cfg_info),
+       struct i2o_cfg_info *tmp = kmalloc(sizeof(struct i2o_cfg_info),
                                           GFP_KERNEL);
        unsigned long flags;