diff options
author | Jesper Juhl <jj@chaosbits.net> | 2010-11-08 18:08:50 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-01-19 09:24:57 -0500 |
commit | 1dcb202f42d0483d8d24015d8ded3badc1d11e2e (patch) | |
tree | a9d15d634d35a4d35a956fdc8e81a151296c0a59 /drivers/message/i2o | |
parent | 288db88216081bed4761ad0924527a9ca54025e9 (diff) |
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>
Diffstat (limited to 'drivers/message/i2o')
-rw-r--r-- | drivers/message/i2o/i2o_config.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/message/i2o/i2o_config.c b/drivers/message/i2o/i2o_config.c index 7d3cc575c361..098de2b35784 100644 --- a/drivers/message/i2o/i2o_config.c +++ b/drivers/message/i2o/i2o_config.c | |||
@@ -1044,8 +1044,7 @@ static long i2o_cfg_ioctl(struct file *fp, unsigned int cmd, unsigned long arg) | |||
1044 | 1044 | ||
1045 | static int cfg_open(struct inode *inode, struct file *file) | 1045 | static int cfg_open(struct inode *inode, struct file *file) |
1046 | { | 1046 | { |
1047 | struct i2o_cfg_info *tmp = | 1047 | struct i2o_cfg_info *tmp = kmalloc(sizeof(struct i2o_cfg_info), |
1048 | (struct i2o_cfg_info *)kmalloc(sizeof(struct i2o_cfg_info), | ||
1049 | GFP_KERNEL); | 1048 | GFP_KERNEL); |
1050 | unsigned long flags; | 1049 | unsigned long flags; |
1051 | 1050 | ||