Instead of comparing ethernet address using memcmp in function
hostif_data_indication use ether_addr_equal function created
for this function.

Signed-off-by: Sergio Paracuellos <sergio.paracuel...@gmail.com>
---
 drivers/staging/ks7010/ks_hostif.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/ks7010/ks_hostif.c 
b/drivers/staging/ks7010/ks_hostif.c
index 261b748..297147e 100644
--- a/drivers/staging/ks7010/ks_hostif.c
+++ b/drivers/staging/ks7010/ks_hostif.c
@@ -372,7 +372,7 @@ void hostif_data_indication(struct ks_wlan_private *priv)
        eth_proto = ntohs(eth_hdr->h_proto);
 
        /* source address check */
-       if (memcmp(&priv->eth_addr[0], eth_hdr->h_source, ETH_ALEN) == 0) {
+       if (ether_addr_equal(&priv->eth_addr[0], eth_hdr->h_source)) {
                netdev_err(priv->net_dev, "invalid : source is own mac address 
!!\n");
                netdev_err(priv->net_dev,
                           
"eth_hdrernet->h_dest=%02X:%02X:%02X:%02X:%02X:%02X\n",
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to