Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40667f32 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: agnx: fix build errors due to ssid removal



The wireless core has removed the ssid variables, so also remove
them from the agnx driver so that it builds properly.

Cc: Li YanBo <dreamfly281@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0f22aab8
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -115,8 +115,6 @@ struct agnx_priv {
	int mode;
	int channel;
	u8 bssid[ETH_ALEN];
	u8 ssid[32];
	size_t ssid_len;

	u8 mac_addr[ETH_ALEN];
	u8 revid;
+0 −6
Original line number Diff line number Diff line
@@ -324,12 +324,6 @@ static int agnx_config_interface(struct ieee80211_hw *dev,
		sta_power_init(priv, BSSID_STAID);
		agnx_write32(ctl, AGNX_BM_MTSM, 0xff & ~0x1);
	}
	if (conf->ssid_len != priv->ssid_len ||
	    memcmp(conf->ssid, priv->ssid, conf->ssid_len)) {
		agnx_set_ssid(priv, conf->ssid, conf->ssid_len);
		priv->ssid_len = conf->ssid_len;
		memcpy(priv->ssid, conf->ssid, conf->ssid_len);
	}
	spin_unlock(&priv->lock);
	return 0;
} /* agnx_config_interface */