net/enic: fix removing old MAC address when setting new one
authorNelson Escobar <neescoba@cisco.com>
Fri, 8 Jul 2016 01:11:08 +0000 (18:11 -0700)
committerBruce Richardson <bruce.richardson@intel.com>
Fri, 8 Jul 2016 20:59:52 +0000 (22:59 +0200)
enic_set_mac_address() meant to remove the old MAC address before
setting the new one, but accidentally tried removing the new MAC
address before setting the new MAC address.

Fixes: fefed3d1e62c ("enic: new driver")

Signed-off-by: Nelson Escobar <neescoba@cisco.com>
Reviewed-by: John Daley <johndale@cisco.com>
drivers/net/enic/enic_main.c

index 5d47c01..d8669cc 100644 (file)
@@ -203,7 +203,7 @@ void enic_set_mac_address(struct enic *enic, uint8_t *mac_addr)
                return;
        }
 
-       err = vnic_dev_del_addr(enic->vdev, mac_addr);
+       err = vnic_dev_del_addr(enic->vdev, enic->mac_addr);
        if (err) {
                dev_err(enic, "del mac addr failed\n");
                return;