Commit 67d0fb25 authored by Thomas Pugliese's avatar Thomas Pugliese Committed by Greg Kroah-Hartman

uwb: whitespace and comment cleanups

various whitespace and comment cleanups
Signed-off-by: default avatarThomas Pugliese <thomas.pugliese@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f79833a7
...@@ -185,7 +185,7 @@ struct uwb_beca_e *__uwb_beca_find_bydev(struct uwb_rc *rc, ...@@ -185,7 +185,7 @@ struct uwb_beca_e *__uwb_beca_find_bydev(struct uwb_rc *rc,
/* Find a beacon by dev addr in the cache */ /* Find a beacon by dev addr in the cache */
static static
struct uwb_beca_e *__uwb_beca_find_bymac(struct uwb_rc *rc, struct uwb_beca_e *__uwb_beca_find_bymac(struct uwb_rc *rc,
const struct uwb_mac_addr *mac_addr) const struct uwb_mac_addr *mac_addr)
{ {
struct uwb_beca_e *bce, *next; struct uwb_beca_e *bce, *next;
......
...@@ -93,7 +93,7 @@ static int uwb_radio_change_channel(struct uwb_rc *rc, int channel) ...@@ -93,7 +93,7 @@ static int uwb_radio_change_channel(struct uwb_rc *rc, int channel)
* uwb_radio_start - request that the radio be started * uwb_radio_start - request that the radio be started
* @pal: the PAL making the request. * @pal: the PAL making the request.
* *
* If the radio is not already active, aa suitable channel is selected * If the radio is not already active, a suitable channel is selected
* and beacons are started. * and beacons are started.
*/ */
int uwb_radio_start(struct uwb_pal *pal) int uwb_radio_start(struct uwb_pal *pal)
......
...@@ -237,7 +237,7 @@ void uwb_rsv_backoff_win_increment(struct uwb_rc *rc) ...@@ -237,7 +237,7 @@ void uwb_rsv_backoff_win_increment(struct uwb_rc *rc)
/* reset the timer associated variables */ /* reset the timer associated variables */
timeout_us = bow->n * UWB_SUPERFRAME_LENGTH_US; timeout_us = bow->n * UWB_SUPERFRAME_LENGTH_US;
bow->total_expired = 0; bow->total_expired = 0;
mod_timer(&bow->timer, jiffies + usecs_to_jiffies(timeout_us)); mod_timer(&bow->timer, jiffies + usecs_to_jiffies(timeout_us));
} }
static void uwb_rsv_stroke_timer(struct uwb_rsv *rsv) static void uwb_rsv_stroke_timer(struct uwb_rsv *rsv)
...@@ -257,7 +257,7 @@ static void uwb_rsv_stroke_timer(struct uwb_rsv *rsv) ...@@ -257,7 +257,7 @@ static void uwb_rsv_stroke_timer(struct uwb_rsv *rsv)
sframes = 1; sframes = 1;
if (rsv->state == UWB_RSV_STATE_O_ESTABLISHED) if (rsv->state == UWB_RSV_STATE_O_ESTABLISHED)
sframes = 0; sframes = 0;
} }
if (sframes > 0) { if (sframes > 0) {
...@@ -611,7 +611,7 @@ int uwb_rsv_try_move(struct uwb_rsv *rsv, struct uwb_mas_bm *available) ...@@ -611,7 +611,7 @@ int uwb_rsv_try_move(struct uwb_rsv *rsv, struct uwb_mas_bm *available)
struct device *dev = &rc->uwb_dev.dev; struct device *dev = &rc->uwb_dev.dev;
struct uwb_rsv_move *mv; struct uwb_rsv_move *mv;
int ret = 0; int ret = 0;
if (bow->can_reserve_extra_mases == false) if (bow->can_reserve_extra_mases == false)
return -EBUSY; return -EBUSY;
...@@ -628,7 +628,7 @@ int uwb_rsv_try_move(struct uwb_rsv *rsv, struct uwb_mas_bm *available) ...@@ -628,7 +628,7 @@ int uwb_rsv_try_move(struct uwb_rsv *rsv, struct uwb_mas_bm *available)
} else { } else {
dev_dbg(dev, "new allocation not found\n"); dev_dbg(dev, "new allocation not found\n");
} }
return ret; return ret;
} }
...@@ -640,7 +640,7 @@ void uwb_rsv_handle_drp_avail_change(struct uwb_rc *rc) ...@@ -640,7 +640,7 @@ void uwb_rsv_handle_drp_avail_change(struct uwb_rc *rc)
struct uwb_drp_backoff_win *bow = &rc->bow; struct uwb_drp_backoff_win *bow = &rc->bow;
struct uwb_rsv *rsv; struct uwb_rsv *rsv;
struct uwb_mas_bm mas; struct uwb_mas_bm mas;
if (bow->can_reserve_extra_mases == false) if (bow->can_reserve_extra_mases == false)
return; return;
...@@ -652,7 +652,7 @@ void uwb_rsv_handle_drp_avail_change(struct uwb_rc *rc) ...@@ -652,7 +652,7 @@ void uwb_rsv_handle_drp_avail_change(struct uwb_rc *rc)
uwb_rsv_try_move(rsv, &mas); uwb_rsv_try_move(rsv, &mas);
} }
} }
} }
/** /**
...@@ -916,7 +916,7 @@ static void uwb_rsv_alien_bp_work(struct work_struct *work) ...@@ -916,7 +916,7 @@ static void uwb_rsv_alien_bp_work(struct work_struct *work)
struct uwb_rsv *rsv; struct uwb_rsv *rsv;
mutex_lock(&rc->rsvs_mutex); mutex_lock(&rc->rsvs_mutex);
list_for_each_entry(rsv, &rc->reservations, rc_node) { list_for_each_entry(rsv, &rc->reservations, rc_node) {
if (rsv->type != UWB_DRP_TYPE_ALIEN_BP) { if (rsv->type != UWB_DRP_TYPE_ALIEN_BP) {
rsv->callback(rsv); rsv->callback(rsv);
......
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