summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/assoc.c
diff options
context:
space:
mode:
authorDavid Woodhouse2007-12-12 06:14:21 +0100
committerDavid S. Miller2008-01-29 00:07:00 +0100
commit23d36eec263d2c913ee651dc43472524397e4a0b (patch)
tree4f662582dd693da4b29388a9ecc7a283b4572a3e /drivers/net/wireless/libertas/assoc.c
parentlibertas: be more careful about command responses matching cur_cmd (diff)
downloadkernel-qcow2-linux-23d36eec263d2c913ee651dc43472524397e4a0b.tar.gz
kernel-qcow2-linux-23d36eec263d2c913ee651dc43472524397e4a0b.tar.xz
kernel-qcow2-linux-23d36eec263d2c913ee651dc43472524397e4a0b.zip
libertas: add missing newlines in debugging statements
Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/assoc.c')
-rw-r--r--drivers/net/wireless/libertas/assoc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c
index 7b672fe62cf9..21a569617421 100644
--- a/drivers/net/wireless/libertas/assoc.c
+++ b/drivers/net/wireless/libertas/assoc.c
@@ -198,7 +198,7 @@ static int assoc_helper_channel(struct lbs_private *priv,
ret = update_channel(priv);
if (ret < 0) {
- lbs_deb_assoc("ASSOC: channel: error getting channel.");
+ lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
}
if (assoc_req->channel == priv->curbssparams.channel)
@@ -215,14 +215,14 @@ static int assoc_helper_channel(struct lbs_private *priv,
ret = lbs_set_channel(priv, assoc_req->channel);
if (ret < 0)
- lbs_deb_assoc("ASSOC: channel: error setting channel.");
+ lbs_deb_assoc("ASSOC: channel: error setting channel.\n");
/* FIXME: shouldn't need to grab the channel _again_ after setting
* it since the firmware is supposed to return the new channel, but
* whatever... */
ret = update_channel(priv);
if (ret < 0)
- lbs_deb_assoc("ASSOC: channel: error getting channel.");
+ lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
if (assoc_req->channel != priv->curbssparams.channel) {
lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n",
@@ -240,7 +240,7 @@ static int assoc_helper_channel(struct lbs_private *priv,
}
/* Must restart/rejoin adhoc networks after channel change */
- set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
+ set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
restore_mesh:
if (priv->mesh_dev)
@@ -334,7 +334,7 @@ static int assoc_helper_secinfo(struct lbs_private *priv,
CMD_OPTION_WAITFORRSP,
0, &rsn);
if (ret) {
- lbs_deb_assoc("Failed to get RSN status: %d", ret);
+ lbs_deb_assoc("Failed to get RSN status: %d\n", ret);
goto out;
}