Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 306701
b: refs/heads/master
c: fd492ed
h: refs/heads/master
i:
  306699: 2adc7f0
v: v3
  • Loading branch information
Luciano Coelho authored and John W. Linville committed May 15, 2012
1 parent 4053a12 commit 1a8b891
Show file tree
Hide file tree
Showing 3 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: 03bed29e0501b5757ce62ebdb01829f7bd8d9819
refs/heads/master: fd492ed7898570c744b2fe0d5856f11a043c66a7
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/ti/wlcore/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static int wlcore_boot_fw_version(struct wl1271 *wl)
struct wl1271_static_data *static_data;
int ret;

static_data = kmalloc(sizeof(*static_data), GFP_DMA);
static_data = kmalloc(sizeof(*static_data), GFP_KERNEL | GFP_DMA);
if (!static_data) {
wl1271_error("Couldn't allocate memory for static data!");
return -ENOMEM;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/ti/wlcore/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4861,7 +4861,7 @@ struct ieee80211_hw *wlcore_alloc_hw(size_t priv_size)
goto err_dummy_packet;
}

wl->mbox = kmalloc(sizeof(*wl->mbox), GFP_DMA);
wl->mbox = kmalloc(sizeof(*wl->mbox), GFP_KERNEL | GFP_DMA);
if (!wl->mbox) {
ret = -ENOMEM;
goto err_fwlog;
Expand Down

0 comments on commit 1a8b891

Please sign in to comment.