diff options
author | Kumar Amit Mehta <gmate.amit@gmail.com> | 2013-02-18 07:13:44 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-02-18 15:30:40 -0500 |
commit | b53cf458ea20dd7f5e32611366f63728e40c9021 (patch) | |
tree | ba0f346b11ed66e242c845586bff11ab6b7ce61c | |
parent | 488ec878034eccb852267b0e27ce9d511f75c587 (diff) |
net: wireless: hostap: hostap_ap.c: Return -ENOMEM instead of -1 for if kmalloc() fails.
When memory allocation using, kmalloc() fails, report appropriate error value.
Signed-off-by: Kumar Amit Mehta <gmate.amit@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-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) | |||
376 | 376 | ||
377 | entry = kmalloc(sizeof(struct mac_entry), GFP_KERNEL); | 377 | entry = kmalloc(sizeof(struct mac_entry), GFP_KERNEL); |
378 | if (entry == NULL) | 378 | if (entry == NULL) |
379 | return -1; | 379 | return -ENOMEM; |
380 | 380 | ||
381 | memcpy(entry->addr, mac, ETH_ALEN); | 381 | memcpy(entry->addr, mac, ETH_ALEN); |
382 | 382 | ||