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: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
264a472d29
Коммит
39cf54fc6a
|
@ -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");
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче