aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-04-02 22:14:41 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-06 17:13:19 -0300
commit8e08af3c30b4e5f59adff0baa33fd346227b45e2 (patch)
treed597b3247dc55bc782acda04f1fbb111ae0a878d
parentV4L/DVB (7460): bttv: Bt832 - fix possible NULL pointer deref (diff)
downloadlinux-dev-8e08af3c30b4e5f59adff0baa33fd346227b45e2.tar.xz
linux-dev-8e08af3c30b4e5f59adff0baa33fd346227b45e2.zip
V4L/DVB (7495): s5h1409: fix blown-away bit in function s5h1409_set_gpio
Preserve all other bits when setting gpio. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Steven Toth <stoth@hauppauge.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r--drivers/media/dvb/frontends/s5h1409.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/s5h1409.c b/drivers/media/dvb/frontends/s5h1409.c
index 819433485d3b..1a4d8319773c 100644
--- a/drivers/media/dvb/frontends/s5h1409.c
+++ b/drivers/media/dvb/frontends/s5h1409.c
@@ -445,7 +445,7 @@ static int s5h1409_set_gpio(struct dvb_frontend* fe, int enable)
s5h1409_readreg(state, 0xe3) | 0x1100);
else
return s5h1409_writereg(state, 0xe3,
- s5h1409_readreg(state, 0xe3) & 0xeeff);
+ s5h1409_readreg(state, 0xe3) & 0xfeff);
}
static int s5h1409_sleep(struct dvb_frontend* fe, int enable)