staging: vt6655: Use ether_addr_copy function
authorDilek Uzulmez <dilekuzulmez@gmail.com>
Wed, 8 Oct 2014 13:05:47 +0000 (16:05 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Oct 2014 02:29:16 +0000 (10:29 +0800)
This patch fixes the following checkpatch.pl warnings:
WARNING: "Prefer ether_addr_copy() over memcpy() if the Ethernet
addresses are __aligned(2)" in file iwctl.c
Pahole shows that the addresses are aligned

Signed-off-by: Dilek Uzulmez <dilekuzulmez@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/iwctl.c

index 14a62bdae278476d29e7a3ff461dc278d0180dd9..94b4859e2f256b2b45ba9ac929e4ae2f5331f06b 100644 (file)
@@ -1756,7 +1756,7 @@ int iwctl_siwencodeext(struct net_device *dev,
        }
 
 /**************Translate iw_encode_ext to viawget_wpa_param****************/
-       memcpy(param->addr, addr, ETH_ALEN);
+       ether_addr_copy(param->addr, addr);
        param->u.wpa_key.alg_name = (int)alg_name;
        param->u.wpa_key.set_tx = set_tx;
        param->u.wpa_key.key_index = key_idx;
This page took 0.025337 seconds and 5 git commands to generate.