Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 121629
b: refs/heads/master
c: 7e272fc
h: refs/heads/master
i:
  121627: 374dca7
v: v3
  • Loading branch information
John W. Linville committed Oct 31, 2008
1 parent f3e9b0c commit 430f4a8
Show file tree
Hide file tree
Showing 24 changed files with 220 additions and 263 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ddf4ac53fb8a12a027c0486db743ae040f45b56a
refs/heads/master: 7e272fcff6f0a32a3d46e600ea5895f6058f4e2d
1 change: 1 addition & 0 deletions trunk/drivers/net/wireless/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ config LIBERTAS
tristate "Marvell 8xxx Libertas WLAN driver support"
depends on WLAN_80211
select WIRELESS_EXT
select LIB80211
select FW_LOADER
---help---
A library for Marvell Libertas 8xxx devices.
Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/net/wireless/ipw2100.c
Original file line number Diff line number Diff line change
Expand Up @@ -1975,7 +1975,7 @@ static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
}

IPW_DEBUG_INFO("%s: Associated with '%s' at %s, channel %d (BSSID=%pM)\n",
priv->net_dev->name, escape_essid(essid, essid_len),
priv->net_dev->name, escape_ssid(essid, essid_len),
txratename, chan, bssid);

/* now we copy read ssid into dev */
Expand Down Expand Up @@ -2003,7 +2003,7 @@ static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid,
};
int err;

IPW_DEBUG_HC("SSID: '%s'\n", escape_essid(essid, ssid_len));
IPW_DEBUG_HC("SSID: '%s'\n", escape_ssid(essid, ssid_len));

if (ssid_len)
memcpy(cmd.host_command_parameters, essid, ssid_len);
Expand Down Expand Up @@ -2046,7 +2046,7 @@ static void isr_indicate_association_lost(struct ipw2100_priv *priv, u32 status)
{
IPW_DEBUG(IPW_DL_NOTIF | IPW_DL_STATE | IPW_DL_ASSOC,
"disassociated: '%s' %pM \n",
escape_essid(priv->essid, priv->essid_len),
escape_ssid(priv->essid, priv->essid_len),
priv->bssid);

priv->status &= ~(STATUS_ASSOCIATED | STATUS_ASSOCIATING);
Expand Down Expand Up @@ -6987,7 +6987,7 @@ static int ipw2100_wx_set_essid(struct net_device *dev,
goto done;
}

IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_essid(essid, length),
IPW_DEBUG_WX("Setting ESSID: '%s' (%d)\n", escape_ssid(essid, length),
length);

priv->essid_len = length;
Expand All @@ -7014,7 +7014,7 @@ static int ipw2100_wx_get_essid(struct net_device *dev,
* configured ESSID then return that; otherwise return ANY */
if (priv->config & CFG_STATIC_ESSID || priv->status & STATUS_ASSOCIATED) {
IPW_DEBUG_WX("Getting essid: '%s'\n",
escape_essid(priv->essid, priv->essid_len));
escape_ssid(priv->essid, priv->essid_len));
memcpy(extra, priv->essid, priv->essid_len);
wrqu->essid.length = priv->essid_len;
wrqu->essid.flags = 1; /* active */
Expand Down
Loading

0 comments on commit 430f4a8

Please sign in to comment.