aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2008-01-18 14:15:17 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 17:53:21 -0200
commit043a68b36dc137c5754183c7625950d7fe39be0b (patch)
treeda2c437ba447b054b56de6bb27c198c45493a312
parentV4L/DVB (9443): Bug: Bandwidth calculation (diff)
downloadlinux-dev-043a68b36dc137c5754183c7625950d7fe39be0b.tar.xz
linux-dev-043a68b36dc137c5754183c7625950d7fe39be0b.zip
V4L/DVB (9444): Initialize post process events to NULL
Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/frontends/stb0899_drv.c2
-rw-r--r--drivers/media/dvb/ttpci/budget-av.c4
-rw-r--r--drivers/media/dvb/ttpci/budget-ci.c4
3 files changed, 7 insertions, 3 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_drv.c b/drivers/media/dvb/frontends/stb0899_drv.c
index 45961193272b..4dc741de3690 100644
--- a/drivers/media/dvb/frontends/stb0899_drv.c
+++ b/drivers/media/dvb/frontends/stb0899_drv.c
@@ -583,7 +583,7 @@ static void stb0899_set_mclk(struct stb0899_state *state, u32 Mclk)
static int stb0899_postproc(struct stb0899_state *state, u8 ctl, int enable)
{
struct stb0899_config *config = state->config;
- struct stb0899_postproc *postproc = config->postproc;
+ const struct stb0899_postproc *postproc = config->postproc;
/* post process event */
if (postproc) {
diff --git a/drivers/media/dvb/ttpci/budget-av.c b/drivers/media/dvb/ttpci/budget-av.c
index 3459a9af7009..aa1bc2d2add7 100644
--- a/drivers/media/dvb/ttpci/budget-av.c
+++ b/drivers/media/dvb/ttpci/budget-av.c
@@ -1445,6 +1445,8 @@ static struct stb0899_config knc1_dvbs2_config = {
.init_s2_fec = knc1_stb0899_s2_init_4,
.init_tst = knc1_stb0899_s1_init_5,
+ .postproc = NULL,
+
.demod_address = 0x68,
// .ts_output_mode = STB0899_OUT_PARALLEL, /* types = SERIAL/PARALLEL */
.block_sync_mode = STB0899_SYNC_FORCED, /* DSS, SYNC_FORCED/UNSYNCED */
@@ -1472,7 +1474,7 @@ static struct stb0899_config knc1_dvbs2_config = {
.tuner_set_frequency = tda8261_set_frequency,
.tuner_set_bandwidth = NULL,
.tuner_get_bandwidth = tda8261_get_bandwidth,
- .tuner_set_rfsiggain = NULL,
+ .tuner_set_rfsiggain = NULL
};
/*
diff --git a/drivers/media/dvb/ttpci/budget-ci.c b/drivers/media/dvb/ttpci/budget-ci.c
index ae9af21bda6c..a317649bc254 100644
--- a/drivers/media/dvb/ttpci/budget-ci.c
+++ b/drivers/media/dvb/ttpci/budget-ci.c
@@ -1655,6 +1655,8 @@ static struct stb0899_config tt3200_config = {
.init_s2_fec = tt3200_stb0899_s2_init_4,
.init_tst = tt3200_stb0899_s1_init_5,
+ .postproc = NULL,
+
.demod_address = 0x68,
.xtal_freq = 27000000,
@@ -1679,7 +1681,7 @@ static struct stb0899_config tt3200_config = {
.tuner_set_frequency = stb6100_set_frequency,
.tuner_set_bandwidth = stb6100_set_bandwidth,
.tuner_get_bandwidth = stb6100_get_bandwidth,
- .tuner_set_rfsiggain = NULL,
+ .tuner_set_rfsiggain = NULL
};
struct stb6100_config tt3200_stb6100_config = {