Commit c6dd2d5d authored by Michael Krufky's avatar Michael Krufky Committed by Linus Torvalds

[PATCH] dvb: nxt200x: check callback fix

Check that a callback (set_ts_params) is set before calling it.
Signed-off-by: default avatarMichael Krufky <mkrufky@m1k.net>
Cc: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 04a45929
......@@ -557,14 +557,16 @@ static int nxt200x_setup_frontend_parameters (struct dvb_frontend* fe,
case QAM_256:
/* Set punctured clock for QAM */
/* This is just a guess since I am unable to test it */
state->config->set_ts_params(fe, 1);
if (state->config->set_ts_params)
state->config->set_ts_params(fe, 1);
/* set to use cable input */
buf[3] |= 0x08;
break;
case VSB_8:
/* Set non-punctured clock for VSB */
state->config->set_ts_params(fe, 0);
if (state->config->set_ts_params)
state->config->set_ts_params(fe, 0);
break;
default:
return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment