Commit 23d36eec authored by David Woodhouse's avatar David Woodhouse Committed by David S. Miller

libertas: add missing newlines in debugging statements

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e1258177
...@@ -198,7 +198,7 @@ static int assoc_helper_channel(struct lbs_private *priv, ...@@ -198,7 +198,7 @@ static int assoc_helper_channel(struct lbs_private *priv,
ret = update_channel(priv); ret = update_channel(priv);
if (ret < 0) { 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) if (assoc_req->channel == priv->curbssparams.channel)
...@@ -215,14 +215,14 @@ static int assoc_helper_channel(struct lbs_private *priv, ...@@ -215,14 +215,14 @@ static int assoc_helper_channel(struct lbs_private *priv,
ret = lbs_set_channel(priv, assoc_req->channel); ret = lbs_set_channel(priv, assoc_req->channel);
if (ret < 0) 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 /* FIXME: shouldn't need to grab the channel _again_ after setting
* it since the firmware is supposed to return the new channel, but * it since the firmware is supposed to return the new channel, but
* whatever... */ * whatever... */
ret = update_channel(priv); ret = update_channel(priv);
if (ret < 0) 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) { if (assoc_req->channel != priv->curbssparams.channel) {
lbs_deb_assoc("ASSOC: channel: failed to update channel to %d\n", 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,7 +240,7 @@ static int assoc_helper_channel(struct lbs_private *priv,
} }
/* Must restart/rejoin adhoc networks after channel change */ /* 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: restore_mesh:
if (priv->mesh_dev) if (priv->mesh_dev)
...@@ -334,7 +334,7 @@ static int assoc_helper_secinfo(struct lbs_private *priv, ...@@ -334,7 +334,7 @@ static int assoc_helper_secinfo(struct lbs_private *priv,
CMD_OPTION_WAITFORRSP, CMD_OPTION_WAITFORRSP,
0, &rsn); 0, &rsn);
if (ret) { 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; goto out;
} }
......
...@@ -222,7 +222,7 @@ static int lbs_cmd_802_11_set_wep(struct lbs_private *priv, ...@@ -222,7 +222,7 @@ static int lbs_cmd_802_11_set_wep(struct lbs_private *priv,
int i; int i;
if (!assoc_req) { if (!assoc_req) {
lbs_deb_cmd("Invalid association request!"); lbs_deb_cmd("Invalid association request!\n");
ret = -1; ret = -1;
goto done; goto done;
} }
...@@ -2088,17 +2088,17 @@ void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode) ...@@ -2088,17 +2088,17 @@ void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode)
if (priv->dnld_sent) { if (priv->dnld_sent) {
allowed = 0; allowed = 0;
lbs_deb_host("dnld_sent was set"); lbs_deb_host("dnld_sent was set\n");
} }
spin_lock_irqsave(&priv->driver_lock, flags); spin_lock_irqsave(&priv->driver_lock, flags);
if (priv->cur_cmd) { if (priv->cur_cmd) {
allowed = 0; allowed = 0;
lbs_deb_host("cur_cmd was set"); lbs_deb_host("cur_cmd was set\n");
} }
if (priv->intcounter > 0) { if (priv->intcounter > 0) {
allowed = 0; allowed = 0;
lbs_deb_host("intcounter %d", priv->intcounter); lbs_deb_host("intcounter %d\n", priv->intcounter);
} }
spin_unlock_irqrestore(&priv->driver_lock, flags); spin_unlock_irqrestore(&priv->driver_lock, flags);
......
...@@ -220,7 +220,7 @@ static int if_usb_probe(struct usb_interface *intf, ...@@ -220,7 +220,7 @@ static int if_usb_probe(struct usb_interface *intf,
/* Upload firmware */ /* Upload firmware */
cardp->rinfo.cardp = cardp; cardp->rinfo.cardp = cardp;
if (if_usb_prog_firmware(cardp)) { if (if_usb_prog_firmware(cardp)) {
lbs_deb_usbd(&udev->dev, "FW upload failed"); lbs_deb_usbd(&udev->dev, "FW upload failed\n");
goto err_prog_firmware; goto err_prog_firmware;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment