Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
This commit is contained in:
@@ -355,8 +355,7 @@ static struct hostap_bss_info *__hostap_add_bss(local_info_t *local, u8 *bssid,
|
||||
list_del(&bss->list);
|
||||
local->num_bss_info--;
|
||||
} else {
|
||||
bss = (struct hostap_bss_info *)
|
||||
kmalloc(sizeof(*bss), GFP_ATOMIC);
|
||||
bss = kmalloc(sizeof(*bss), GFP_ATOMIC);
|
||||
if (bss == NULL)
|
||||
return NULL;
|
||||
}
|
||||
|
@@ -3039,8 +3039,7 @@ static int prism2_ioctl_priv_download(local_info_t *local, struct iw_point *p)
|
||||
p->length > 1024 || !p->pointer)
|
||||
return -EINVAL;
|
||||
|
||||
param = (struct prism2_download_param *)
|
||||
kmalloc(p->length, GFP_KERNEL);
|
||||
param = kmalloc(p->length, GFP_KERNEL);
|
||||
if (param == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
|
Reference in New Issue
Block a user