diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2014-10-23 05:52:57 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-03 18:45:04 -0500 |
commit | d9c3ae28bd6b72803e266eb384e0ba312f9ff837 (patch) | |
tree | 65e0c6b783a5b17aa9befcd7f113c0c47bc94b77 /drivers/uwb | |
parent | 88538be35bc9d66bb425c431e30b3614482a840d (diff) |
uwb: Remove bogus colon after newline from debug message
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/uwb')
-rw-r--r-- | drivers/uwb/rsv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/uwb/rsv.c b/drivers/uwb/rsv.c index 0887ae982783..536ad42b0a4b 100644 --- a/drivers/uwb/rsv.c +++ b/drivers/uwb/rsv.c | |||
@@ -213,7 +213,7 @@ void uwb_rsv_backoff_win_timer(unsigned long arg) | |||
213 | bow->total_expired = 0; | 213 | bow->total_expired = 0; |
214 | bow->window = UWB_DRP_BACKOFF_WIN_MIN >> 1; | 214 | bow->window = UWB_DRP_BACKOFF_WIN_MIN >> 1; |
215 | } | 215 | } |
216 | dev_dbg(dev, "backoff_win_timer total_expired=%d, n=%d\n: ", bow->total_expired, bow->n); | 216 | dev_dbg(dev, "backoff_win_timer total_expired=%d, n=%d\n", bow->total_expired, bow->n); |
217 | 217 | ||
218 | /* try to relocate all the "to be moved" relocations */ | 218 | /* try to relocate all the "to be moved" relocations */ |
219 | uwb_rsv_handle_drp_avail_change(rc); | 219 | uwb_rsv_handle_drp_avail_change(rc); |
@@ -234,7 +234,7 @@ void uwb_rsv_backoff_win_increment(struct uwb_rc *rc) | |||
234 | 234 | ||
235 | bow->window <<= 1; | 235 | bow->window <<= 1; |
236 | bow->n = prandom_u32() & (bow->window - 1); | 236 | bow->n = prandom_u32() & (bow->window - 1); |
237 | dev_dbg(dev, "new_window=%d, n=%d\n: ", bow->window, bow->n); | 237 | dev_dbg(dev, "new_window=%d, n=%d\n", bow->window, bow->n); |
238 | 238 | ||
239 | /* reset the timer associated variables */ | 239 | /* reset the timer associated variables */ |
240 | timeout_us = bow->n * UWB_SUPERFRAME_LENGTH_US; | 240 | timeout_us = bow->n * UWB_SUPERFRAME_LENGTH_US; |