Commit 1dcb202f42d0483d8d24015d8ded3badc1d11e2e
Committed by
Jiri Kosina
1 parent
288db88216
Exists in
master
and in
7 other branches
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>
Showing 1 changed file with 1 additions and 2 deletions Side-by-side Diff
drivers/message/i2o/i2o_config.c
... | ... | @@ -1044,8 +1044,7 @@ |
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 |