diff options
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_ap.c')
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_ap.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/net/wireless/hostap/hostap_ap.c b/drivers/net/wireless/hostap/hostap_ap.c index c6ea995750db..dd9a18f8dbca 100644 --- a/drivers/net/wireless/hostap/hostap_ap.c +++ b/drivers/net/wireless/hostap/hostap_ap.c @@ -376,7 +376,7 @@ int ap_control_add_mac(struct mac_restrictions *mac_restrictions, u8 *mac)  	entry = kmalloc(sizeof(struct mac_entry), GFP_KERNEL);  	if (entry == NULL) -		return -1; +		return -ENOMEM;  	memcpy(entry->addr, mac, ETH_ALEN); |