提交 9c805bd9 编写于 作者: M Matthias Beyer 提交者: Greg Kroah-Hartman

Staging: bcm: led_control.c: More variable names refactored

Signed-off-by: NMatthias Beyer <mail@beyermatthias.de>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 60e66d87
...@@ -98,9 +98,9 @@ static INT ScaleRateofTransfer(ULONG rate) ...@@ -98,9 +98,9 @@ static INT ScaleRateofTransfer(ULONG rate)
} }
static INT blink_in_normal_bandwidth(struct bcm_mini_adapter *ad, static INT blink_in_normal_bandwidth(struct bcm_mini_adapter *ad,
INT *num_of_time, INT *time,
INT *num_of_time_tx, INT *time_tx,
INT *num_of_time_rx, INT *time_rx,
UCHAR GPIO_Num_tx, UCHAR GPIO_Num_tx,
UCHAR uiTxLedIndex, UCHAR uiTxLedIndex,
UCHAR GPIO_Num_rx, UCHAR GPIO_Num_rx,
...@@ -112,38 +112,38 @@ static INT blink_in_normal_bandwidth(struct bcm_mini_adapter *ad, ...@@ -112,38 +112,38 @@ static INT blink_in_normal_bandwidth(struct bcm_mini_adapter *ad,
* Assign minimum number of blinks of * Assign minimum number of blinks of
* either Tx or Rx. * either Tx or Rx.
*/ */
if (*num_of_time_tx > *num_of_time_rx) if (*time_tx > *time_rx)
*num_of_time = *num_of_time_rx; *time = *time_rx;
else else
*num_of_time = *num_of_time_tx; *time = *time_tx;
if (*num_of_time > 0) { if (*time > 0) {
/* Blink both Tx and Rx LEDs */ /* Blink both Tx and Rx LEDs */
if (LED_Blink(ad, 1 << GPIO_Num_tx, uiTxLedIndex, *timeout, if (LED_Blink(ad, 1 << GPIO_Num_tx, uiTxLedIndex, *timeout,
*num_of_time, currdriverstate) == EVENT_SIGNALED) *time, currdriverstate) == EVENT_SIGNALED)
return EVENT_SIGNALED; return EVENT_SIGNALED;
if (LED_Blink(ad, 1 << GPIO_Num_rx, uiRxLedIndex, *timeout, if (LED_Blink(ad, 1 << GPIO_Num_rx, uiRxLedIndex, *timeout,
*num_of_time, currdriverstate) == EVENT_SIGNALED) *time, currdriverstate) == EVENT_SIGNALED)
return EVENT_SIGNALED; return EVENT_SIGNALED;
} }
if (*num_of_time == *num_of_time_tx) { if (*time == *time_tx) {
/* Blink pending rate of Rx */ /* Blink pending rate of Rx */
if (LED_Blink(ad, (1 << GPIO_Num_rx), uiRxLedIndex, *timeout, if (LED_Blink(ad, (1 << GPIO_Num_rx), uiRxLedIndex, *timeout,
*num_of_time_rx - *num_of_time, *time_rx - *time,
currdriverstate) == EVENT_SIGNALED) currdriverstate) == EVENT_SIGNALED)
return EVENT_SIGNALED; return EVENT_SIGNALED;
*num_of_time = *num_of_time_rx; *time = *time_rx;
} else { } else {
/* Blink pending rate of Tx */ /* Blink pending rate of Tx */
if (LED_Blink(ad, 1 << GPIO_Num_tx, uiTxLedIndex, *timeout, if (LED_Blink(ad, 1 << GPIO_Num_tx, uiTxLedIndex, *timeout,
*num_of_time_tx - *num_of_time, *time_tx - *time,
currdriverstate) == EVENT_SIGNALED) currdriverstate) == EVENT_SIGNALED)
return EVENT_SIGNALED; return EVENT_SIGNALED;
*num_of_time = *num_of_time_tx; *time = *time_tx;
} }
return 0; return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册