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

Commit b6501dd8 authored by Konrad Zapalowicz's avatar Konrad Zapalowicz Committed by Greg Kroah-Hartman
Browse files

serial: jsm: Remove unnecessary if statement



The flow of {neo,cls}_param() shows that at this stage the baud rate
has a non-zero value. This fact makes the if clausule obsolete and
acknowledges it's removal.

Signed-off-by: default avatarKonrad Zapalowicz <bergo.torino@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 333f4eb1
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -767,9 +767,6 @@ static void cls_param(struct jsm_channel *ch)
	ier = readb(&ch->ch_cls_uart->ier);
	uart_lcr = readb(&ch->ch_cls_uart->lcr);

	if (baud == 0)
		baud = 9600;

	quot = ch->ch_bd->bd_dividend / baud;

	if (quot != 0) {
+0 −3
Original line number Diff line number Diff line
@@ -1037,9 +1037,6 @@ static void neo_param(struct jsm_channel *ch)
	ier = readb(&ch->ch_neo_uart->ier);
	uart_lcr = readb(&ch->ch_neo_uart->lcr);

	if (baud == 0)
		baud = 9600;

	quot = ch->ch_bd->bd_dividend / baud;

	if (quot != 0) {