Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64541
b: refs/heads/master
c: 901ded2
h: refs/heads/master
i:
  64539: 68712a1
v: v3
  • Loading branch information
Jesper Juhl authored and David S. Miller committed Aug 27, 2007
1 parent 6d3aa51 commit 0486510
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: aaa53c4aba14f14de06419a20e552fe2d8823a33
refs/heads/master: 901ded25fb98d76e55a8920834b173e7efc026b6
4 changes: 2 additions & 2 deletions trunk/drivers/net/irda/kingsun-sir.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,12 +509,12 @@ static int kingsun_probe(struct usb_interface *intf,
spin_lock_init(&kingsun->lock);

/* Allocate input buffer */
kingsun->in_buf = (__u8 *)kmalloc(kingsun->max_rx, GFP_KERNEL);
kingsun->in_buf = kmalloc(kingsun->max_rx, GFP_KERNEL);
if (!kingsun->in_buf)
goto free_mem;

/* Allocate output buffer */
kingsun->out_buf = (__u8 *)kmalloc(KINGSUN_FIFO_SIZE, GFP_KERNEL);
kingsun->out_buf = kmalloc(KINGSUN_FIFO_SIZE, GFP_KERNEL);
if (!kingsun->out_buf)
goto free_mem;

Expand Down

0 comments on commit 0486510

Please sign in to comment.