提交 030274ae 编写于 作者: R Ralf Baechle

Remove useless casts of kmalloc return values.

Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
上级 e5adb877
...@@ -290,8 +290,7 @@ au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid, ...@@ -290,8 +290,7 @@ au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid,
/* If kmalloc fails, it is caught below same /* If kmalloc fails, it is caught below same
* as a channel not available. * as a channel not available.
*/ */
ctp = (chan_tab_t *) ctp = kmalloc(sizeof(chan_tab_t), GFP_KERNEL);
kmalloc(sizeof(chan_tab_t), GFP_KERNEL);
chan_tab_ptr[i] = ctp; chan_tab_ptr[i] = ctp;
break; break;
} }
......
...@@ -422,9 +422,7 @@ static inline int look_for_irix_interpreter(char **name, ...@@ -422,9 +422,7 @@ static inline int look_for_irix_interpreter(char **name,
if (*name != NULL) if (*name != NULL)
goto out; goto out;
*name = (char *) kmalloc((epp->p_filesz + *name = kmalloc(epp->p_filesz + strlen(IRIX_EMUL), GFP_KERNEL);
strlen(IRIX_EMUL)),
GFP_KERNEL);
if (!*name) if (!*name)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册