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

Commit c714efe4 authored by Michael Ira Krufky's avatar Michael Ira Krufky Committed by Mauro Carvalho Chehab
Browse files

[media] lgdt3306a: remove unnecessary 'else'



No need for an else, as the previous if will return.

Signed-off-by: default avatarMichael Ira Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 8e8cd34e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1088,7 +1088,7 @@ static LG3306_MODULATION lgdt3306a_check_oper_mode(struct lgdt3306a_state *state
		lg_dbg("VSB\n");
		return LG3306_VSB;
	}
	else if (val & 0x08) {
	if (val & 0x08) {
		ret = lgdt3306a_read_reg(state, 0x00A6, &val);
		val = val >> 2;
		if (val & 0x01) {