summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorJamie Honan <devnull@localhost>2003-10-29 07:01:11 +0000
committerJamie Honan <devnull@localhost>2003-10-29 07:01:11 +0000
commit75572678df44f6cc6588faea4b017a9e72811058 (patch)
tree3478a88074865b9c8752ed875710551ba270126f /linux
parent3f4a888f9895d1ed0fa203f25f38dfef1ebd0b9c (diff)
downloadmediapointer-dvb-s2-75572678df44f6cc6588faea4b017a9e72811058.tar.gz
mediapointer-dvb-s2-75572678df44f6cc6588faea4b017a9e72811058.tar.bz2
Pin 1 versus pin 2 needs more testing. Put back as was till more
feedback.
Diffstat (limited to 'linux')
-rw-r--r--linux/drivers/media/dvb/frontends/dst.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/dst.c b/linux/drivers/media/dvb/frontends/dst.c
index 5d3a176a3..5ea354eef 100644
--- a/linux/drivers/media/dvb/frontends/dst.c
+++ b/linux/drivers/media/dvb/frontends/dst.c
@@ -186,7 +186,7 @@ static int dst_gpio_inb(struct dst_data *dst, u8 *result)
}
#define DST_I2C_ENABLE 1
-#define DST_8820 4
+#define DST_8820 2
static int
dst_reset8820(struct dst_data *dst)
@@ -201,10 +201,12 @@ int retval;
retval = dst_gpio_outb(dst, DST_8820, DST_8820, DST_8820);
if (retval < 0)
return retval;
+ /* wait for more feedback on what works here *
dvb_delay(10);
retval = dst_gpio_outb(dst, DST_8820, DST_8820, 0);
if (retval < 0)
return retval;
+ */
return 0;
}