Ver Fonte

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>
Greg Kroah-Hartman há 16 anos atrás
pai
commit
40667f32d1
2 ficheiros alterados com 0 adições e 8 exclusões
  1. 0 2
      drivers/staging/agnx/agnx.h
  2. 0 6
      drivers/staging/agnx/pci.c

+ 0 - 2
drivers/staging/agnx/agnx.h

@@ -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
drivers/staging/agnx/pci.c

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