Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 89550511 authored by Matthias Beyer's avatar Matthias Beyer Committed by Greg Kroah-Hartman
Browse files

Staging: bcm: led_control.c: Replaced time selecting ifelse with ternary operator

parent 9c805bd9
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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,