aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/assoc.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2007-12-12 00:14:21 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:07:00 -0500
commit23d36eec263d2c913ee651dc43472524397e4a0b (patch)
tree4f662582dd693da4b29388a9ecc7a283b4572a3e /drivers/net/wireless/libertas/assoc.c
parente1258177e437cb8b892622f2b7beedd4701540ac (diff)
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,
198 198
199 ret = update_channel(priv); 199 ret = update_channel(priv);
200 if (ret < 0) { 200 if (ret < 0) {
201 lbs_deb_assoc("ASSOC: channel: error getting channel."); 201 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
202 } 202 }
203 203
204 if (assoc_req->channel == priv->curbssparams.channel) 204 if (assoc_req->channel == priv->curbssparams.channel)
@@ -215,14 +215,14 @@ static int assoc_helper_channel(struct lbs_private *priv,
215 215
216 ret = lbs_set_channel(priv, assoc_req->channel); 216 ret = lbs_set_channel(priv, assoc_req->channel);
217 if (ret < 0) 217 if (ret < 0)
218 lbs_deb_assoc("ASSOC: channel: error setting channel."); 218 lbs_deb_assoc("ASSOC: channel: error setting channel.\n");
219 219
220 /* FIXME: shouldn't need to grab the channel _again_ after setting 220 /* FIXME: shouldn't need to grab the channel _again_ after setting
221 * it since the firmware is supposed to return the new channel, but 221 * it since the firmware is supposed to return the new channel, but
222 * whatever... */ 222 * whatever... */
223 ret = update_channel(priv); 223 ret = update_channel(priv);
224 if (ret < 0) 224 if (ret < 0)
225 lbs_deb_assoc("ASSOC: channel: error getting channel."); 225 lbs_deb_assoc("ASSOC: channel: error getting channel.\n");
226 226
227 if (assoc_req->channel != priv->curbssparams.channel) { 227 if (assoc_req->channel != priv->curbssparams.channel) {
228 lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n", 228 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,
240 } 240 }
241 241
242 /* Must restart/rejoin adhoc networks after channel change */ 242 /* Must restart/rejoin adhoc networks after channel change */
243 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags); 243 set_bit(ASSOC_FLAG_SSID, &assoc_req->flags);
244 244
245 restore_mesh: 245 restore_mesh:
246 if (priv->mesh_dev) 246 if (priv->mesh_dev)
@@ -334,7 +334,7 @@ static int assoc_helper_secinfo(struct lbs_private *priv,
334 CMD_OPTION_WAITFORRSP, 334 CMD_OPTION_WAITFORRSP,
335 0, &rsn); 335 0, &rsn);
336 if (ret) { 336 if (ret) {
337 lbs_deb_assoc("Failed to get RSN status: %d", ret); 337 lbs_deb_assoc("Failed to get RSN status: %d\n", ret);
338 goto out; 338 goto out;
339 } 339 }
340 340