Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drivers/message/, i2o: 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/message/

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Jesper Juhl and committed by
Jiri Kosina
1dcb202f 288db882

+1 -2
+1 -2
drivers/message/i2o/i2o_config.c
··· 1044 1044 1045 1045 static int cfg_open(struct inode *inode, struct file *file) 1046 1046 { 1047 - struct i2o_cfg_info *tmp = 1048 - (struct i2o_cfg_info *)kmalloc(sizeof(struct i2o_cfg_info), 1047 + struct i2o_cfg_info *tmp = kmalloc(sizeof(struct i2o_cfg_info), 1049 1048 GFP_KERNEL); 1050 1049 unsigned long flags; 1051 1050