diff options
Diffstat (limited to 'drivers/net/wireless/hostap')
-rw-r--r-- | drivers/net/wireless/hostap/hostap_hw.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/drivers/net/wireless/hostap/hostap_hw.c b/drivers/net/wireless/hostap/hostap_hw.c index 682df855bd85..50f87b60b0bd 100644 --- a/drivers/net/wireless/hostap/hostap_hw.c +++ b/drivers/net/wireless/hostap/hostap_hw.c | |||
@@ -347,11 +347,9 @@ static int hfa384x_cmd(struct net_device *dev, u16 cmd, u16 param0, | |||
347 | return -EINTR; | 347 | return -EINTR; |
348 | 348 | ||
349 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); | 349 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); |
350 | if (entry == NULL) { | 350 | if (entry == NULL) |
351 | printk(KERN_DEBUG "%s: hfa384x_cmd - kmalloc failed\n", | ||
352 | dev->name); | ||
353 | return -ENOMEM; | 351 | return -ENOMEM; |
354 | } | 352 | |
355 | atomic_set(&entry->usecnt, 1); | 353 | atomic_set(&entry->usecnt, 1); |
356 | entry->type = CMD_SLEEP; | 354 | entry->type = CMD_SLEEP; |
357 | entry->cmd = cmd; | 355 | entry->cmd = cmd; |
@@ -515,11 +513,9 @@ static int hfa384x_cmd_callback(struct net_device *dev, u16 cmd, u16 param0, | |||
515 | } | 513 | } |
516 | 514 | ||
517 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); | 515 | entry = kzalloc(sizeof(*entry), GFP_ATOMIC); |
518 | if (entry == NULL) { | 516 | if (entry == NULL) |
519 | printk(KERN_DEBUG "%s: hfa384x_cmd_callback - kmalloc " | ||
520 | "failed\n", dev->name); | ||
521 | return -ENOMEM; | 517 | return -ENOMEM; |
522 | } | 518 | |
523 | atomic_set(&entry->usecnt, 1); | 519 | atomic_set(&entry->usecnt, 1); |
524 | entry->type = CMD_CALLBACK; | 520 | entry->type = CMD_CALLBACK; |
525 | entry->cmd = cmd; | 521 | entry->cmd = cmd; |
@@ -2978,11 +2974,9 @@ static int prism2_set_tim(struct net_device *dev, int aid, int set) | |||
2978 | local = iface->local; | 2974 | local = iface->local; |
2979 | 2975 | ||
2980 | new_entry = kzalloc(sizeof(*new_entry), GFP_ATOMIC); | 2976 | new_entry = kzalloc(sizeof(*new_entry), GFP_ATOMIC); |
2981 | if (new_entry == NULL) { | 2977 | if (new_entry == NULL) |
2982 | printk(KERN_DEBUG "%s: prism2_set_tim: kmalloc failed\n", | ||
2983 | local->dev->name); | ||
2984 | return -ENOMEM; | 2978 | return -ENOMEM; |
2985 | } | 2979 | |
2986 | new_entry->aid = aid; | 2980 | new_entry->aid = aid; |
2987 | new_entry->set = set; | 2981 | new_entry->set = set; |
2988 | 2982 | ||