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

Commit 67d52e29 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (6920): tuner: fix backwards logic in check for set_config



tuner-core was checking if analog_ops->set_config is set.  If set, it would
complain that it isn't.  Fix this backwards logic to the proper behavior.

Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent de7234bb
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -855,12 +855,11 @@ static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
			break;

		if (analog_ops->set_config) {
			tuner_warn("Tuner frontend module has no way to "
				   "set config\n");
			analog_ops->set_config(&t->fe, cfg->priv);
			break;
		}

		analog_ops->set_config(&t->fe, cfg->priv);
		tuner_dbg("Tuner frontend module has no way to set config\n");
		break;
	}
	/* --- v4l ioctls --- */