Signed-off-by: Matthias Beyer <[email protected]>
---
drivers/staging/bcm/led_control.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/bcm/led_control.c
b/drivers/staging/bcm/led_control.c
index a387c6a..8a59115 100644
--- a/drivers/staging/bcm/led_control.c
+++ b/drivers/staging/bcm/led_control.c
@@ -112,10 +112,8 @@ static INT blink_in_normal_bandwidth(struct
bcm_mini_adapter *ad,
* Assign minimum number of blinks of
* either Tx or Rx.
*/
- if (*time_tx > *time_rx)
- *time = *time_rx;
- else
- *time = *time_tx;
+ *time = (*time_tx > *time_rx ? *time_rx : *time_tx);
+
if (*time > 0) {
/* Blink both Tx and Rx LEDs */
if (LED_Blink(ad, 1 << GPIO_Num_tx, uiTxLedIndex, *timeout,
--
2.0.0
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel