Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1dcb202f authored by Jesper Juhl's avatar Jesper Juhl Committed by Jiri Kosina
Browse files

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: default avatarJesper Juhl <jj@chaosbits.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 288db882
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -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)
static int cfg_open(struct inode *inode, struct file *file)
{
{
	struct i2o_cfg_info *tmp =
	struct i2o_cfg_info *tmp = kmalloc(sizeof(struct i2o_cfg_info),
	    (struct i2o_cfg_info *)kmalloc(sizeof(struct i2o_cfg_info),
					   GFP_KERNEL);
					   GFP_KERNEL);
	unsigned long flags;
	unsigned long flags;