Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11287
b: refs/heads/master
c: 030274a
h: refs/heads/master
i:
  11285: 5c35079
  11283: 22fa8df
  11279: 729bfb3
v: v3
  • Loading branch information
Ralf Baechle committed Oct 29, 2005
1 parent 574b9d9 commit 75321a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e5adb8770e12169a6595a3ad5682541441bd1052
refs/heads/master: 030274ae03c20f9ac27d4218118b9679d7c680d8
3 changes: 1 addition & 2 deletions trunk/arch/mips/au1000/common/dbdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,7 @@ au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid,
/* If kmalloc fails, it is caught below same
* as a channel not available.
*/
ctp = (chan_tab_t *)
kmalloc(sizeof(chan_tab_t), GFP_KERNEL);
ctp = kmalloc(sizeof(chan_tab_t), GFP_KERNEL);
chan_tab_ptr[i] = ctp;
break;
}
Expand Down
4 changes: 1 addition & 3 deletions trunk/arch/mips/kernel/irixelf.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,9 +422,7 @@ static inline int look_for_irix_interpreter(char **name,
if (*name != NULL)
goto out;

*name = (char *) kmalloc((epp->p_filesz +
strlen(IRIX_EMUL)),
GFP_KERNEL);
*name = kmalloc(epp->p_filesz + strlen(IRIX_EMUL), GFP_KERNEL);
if (!*name)
return -ENOMEM;

Expand Down

0 comments on commit 75321a4

Please sign in to comment.