diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-12-12 00:14:21 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:07:00 -0500 |
commit | 23d36eec263d2c913ee651dc43472524397e4a0b (patch) | |
tree | 4f662582dd693da4b29388a9ecc7a283b4572a3e /drivers/net/wireless/libertas/cmd.c | |
parent | e1258177e437cb8b892622f2b7beedd4701540ac (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/cmd.c')
-rw-r--r-- | drivers/net/wireless/libertas/cmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/cmd.c b/drivers/net/wireless/libertas/cmd.c index 5ddb46a477a4..8d8f9d9ba192 100644 --- a/drivers/net/wireless/libertas/cmd.c +++ b/drivers/net/wireless/libertas/cmd.c | |||
@@ -222,7 +222,7 @@ static int lbs_cmd_802_11_set_wep(struct lbs_private *priv, | |||
222 | int i; | 222 | int i; |
223 | 223 | ||
224 | if (!assoc_req) { | 224 | if (!assoc_req) { |
225 | lbs_deb_cmd("Invalid association request!"); | 225 | lbs_deb_cmd("Invalid association request!\n"); |
226 | ret = -1; | 226 | ret = -1; |
227 | goto done; | 227 | goto done; |
228 | } | 228 | } |
@@ -2088,17 +2088,17 @@ void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode) | |||
2088 | 2088 | ||
2089 | if (priv->dnld_sent) { | 2089 | if (priv->dnld_sent) { |
2090 | allowed = 0; | 2090 | allowed = 0; |
2091 | lbs_deb_host("dnld_sent was set"); | 2091 | lbs_deb_host("dnld_sent was set\n"); |
2092 | } | 2092 | } |
2093 | 2093 | ||
2094 | spin_lock_irqsave(&priv->driver_lock, flags); | 2094 | spin_lock_irqsave(&priv->driver_lock, flags); |
2095 | if (priv->cur_cmd) { | 2095 | if (priv->cur_cmd) { |
2096 | allowed = 0; | 2096 | allowed = 0; |
2097 | lbs_deb_host("cur_cmd was set"); | 2097 | lbs_deb_host("cur_cmd was set\n"); |
2098 | } | 2098 | } |
2099 | if (priv->intcounter > 0) { | 2099 | if (priv->intcounter > 0) { |
2100 | allowed = 0; | 2100 | allowed = 0; |
2101 | lbs_deb_host("intcounter %d", priv->intcounter); | 2101 | lbs_deb_host("intcounter %d\n", priv->intcounter); |
2102 | } | 2102 | } |
2103 | spin_unlock_irqrestore(&priv->driver_lock, flags); | 2103 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
2104 | 2104 | ||