From: Chaehyun Lim Date: Tue, 16 Feb 2016 08:39:50 +0000 (+0900) Subject: staging: wilc1000: handle_set_mac_address: fix kmalloc return error code X-Git-Tag: v4.6-rc1~103^2~784 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=2b489e0e2673648a048445325f9db2d18fcaae0d;p=linux.git staging: wilc1000: handle_set_mac_address: fix kmalloc return error code This patch fix return error code of kmalloc as -ENOMEM instead of -EFAULT. Signed-off-by: Chaehyun Lim Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index c6a9e52b6371..8bcf69a18832 100644 --- 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 -EFAULT; + return -ENOMEM; memcpy(mac_buf, set_mac_addr->mac_addr, ETH_ALEN);