Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277716
b: refs/heads/master
c: 52a1020
h: refs/heads/master
v: v3
  • Loading branch information
David Herrmann authored and Gustavo F. Padovan committed Nov 7, 2011
1 parent 4214dec commit 1e3146c
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: df164df9a77979d1774ede353988c1a62584594b
refs/heads/master: 52a1020e80beece986002f673eca24dae6255b55
4 changes: 2 additions & 2 deletions trunk/drivers/bluetooth/ath3k.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ static int ath3k_load_firmware(struct usb_device *udev,

pipe = usb_sndctrlpipe(udev, 0);

send_buf = kmalloc(BULK_SIZE, GFP_ATOMIC);
send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
if (!send_buf) {
BT_ERR("Can't allocate memory chunk for firmware");
return -ENOMEM;
Expand Down Expand Up @@ -177,7 +177,7 @@ static int ath3k_load_fwfile(struct usb_device *udev,

count = firmware->size;

send_buf = kmalloc(BULK_SIZE, GFP_ATOMIC);
send_buf = kmalloc(BULK_SIZE, GFP_KERNEL);
if (!send_buf) {
BT_ERR("Can't allocate memory chunk for firmware");
return -ENOMEM;
Expand Down

0 comments on commit 1e3146c

Please sign in to comment.