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: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman 2009-01-05 12:37:19 -08:00
parent 0f22aab897
commit 40667f32d1
2 changed files with 0 additions and 8 deletions

View File

@ -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;

View File

@ -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 */