aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/stb0899_drv.c
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2007-10-30 20:05:59 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 17:53:20 -0200
commit9efdd297bc7c50dea24532a9b52bd0245e7e5169 (patch)
tree8a6366e63b315658fca18d2b1373d68686863e2a /drivers/media/dvb/frontends/stb0899_drv.c
parentV4L/DVB (9435): Add post process interfaces (diff)
downloadlinux-dev-9efdd297bc7c50dea24532a9b52bd0245e7e5169.tar.xz
linux-dev-9efdd297bc7c50dea24532a9b52bd0245e7e5169.zip
V4L/DVB (9436): Fix a typo in the previous commit
Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to '')
-rw-r--r--drivers/media/dvb/frontends/stb0899_drv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_drv.c b/drivers/media/dvb/frontends/stb0899_drv.c
index 0b1d94476638..0b2a908f1a5f 100644
--- a/drivers/media/dvb/frontends/stb0899_drv.c
+++ b/drivers/media/dvb/frontends/stb0899_drv.c
@@ -588,12 +588,12 @@ static int stb0899_postproc(struct stb0899_state *state, u8 ctl, int enable)
/* post process event */
if (postproc) {
if (enable) {
- if (postproc[STB0899_POSTPROC_GPIO_POWER].level == STB0899_GPIOPULLUP)
+ if (postproc[ctl].level == STB0899_GPIOPULLUP)
stb0899_write_reg(state, postproc[ctl].gpio, 0x02);
else
stb0899_write_reg(state, postproc[ctl].gpio, 0x82);
} else {
- if (postproc[STB0899_POSTPROC_GPIO_POWER].level == STB0899_GPIOPULLUP)
+ if (postproc[ctl].level == STB0899_GPIOPULLUP)
stb0899_write_reg(state, postproc[ctl].gpio, 0x82);
else
stb0899_write_reg(state, postproc[ctl].gpio, 0x02);