projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b713ce0
)
staging: wilc1000: handle_set_mac_address: fix kmalloc return error code
author
Chaehyun Lim
<
[email protected]
>
Tue, 16 Feb 2016 08:39:50 +0000
(17:39 +0900)
committer
Greg Kroah-Hartman
<
[email protected]
>
Sat, 20 Feb 2016 00:55:33 +0000
(16:55 -0800)
This patch fix return error code of kmalloc as -ENOMEM instead of
-EFAULT.
Signed-off-by: Chaehyun Lim <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/staging/wilc1000/host_interface.c
patch
|
blob
|
history
diff --git
a/drivers/staging/wilc1000/host_interface.c
b/drivers/staging/wilc1000/host_interface.c
index c6a9e52b6371e1bc71be437c0d1495ce23c41380..8bcf69a188324db3bf22025b601f735e05e00450 100644
(file)
--- a/
drivers/staging/wilc1000/host_interface.c
+++ b/
drivers/staging/wilc1000/host_interface.c
@@
-432,7
+432,7
@@
static s32 handle_set_mac_address(struct wilc_vif *vif,
u8 *mac_buf = kmalloc(ETH_ALEN, GFP_KERNEL);
if (!mac_buf)
- return -E
FAULT
;
+ return -E
NOMEM
;
memcpy(mac_buf, set_mac_addr->mac_addr, ETH_ALEN);