Commit 39cf54fc authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: remove use of 'src_addr' element in 'wilc_vif' struct



Remove use of 'src_addr' element in wilc_vif, as the same information
already copied to net_device->dev_addr.

Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 264a472d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -638,8 +638,7 @@ static int wilc_mac_open(struct net_device *ndev)

	wilc_get_mac_address(vif, mac_add);
	netdev_dbg(ndev, "Mac address: %pM\n", mac_add);
	memcpy(vif->src_addr, mac_add, ETH_ALEN);
	memcpy(ndev->dev_addr, vif->src_addr, ETH_ALEN);
	ether_addr_copy(ndev->dev_addr, mac_add);

	if (!is_valid_ether_addr(ndev->dev_addr)) {
		netdev_err(ndev, "Wrong MAC address\n");
+1 −1
Original line number Diff line number Diff line
@@ -1499,7 +1499,7 @@ static int start_ap(struct wiphy *wiphy, struct net_device *dev,
	if (ret != 0)
		netdev_err(dev, "Error in setting channel\n");

	wilc_wlan_set_bssid(dev, vif->src_addr, WILC_AP_MODE);
	wilc_wlan_set_bssid(dev, dev->dev_addr, WILC_AP_MODE);
	wilc_set_power_mgmt(vif, 0, 0);

	return wilc_add_beacon(vif, settings->beacon_interval,
+0 −1
Original line number Diff line number Diff line
@@ -198,7 +198,6 @@ struct wilc_vif {
	struct frame_reg frame_reg[NUM_REG_FRAME];
	struct net_device_stats netstats;
	struct wilc *wilc;
	u8 src_addr[ETH_ALEN];
	u8 bssid[ETH_ALEN];
	struct host_if_drv *hif_drv;
	struct net_device *ndev;