summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <devnull@localhost>2005-11-18 15:13:50 +0000
committerMauro Carvalho Chehab <devnull@localhost>2005-11-18 15:13:50 +0000
commit4c9626ba54449b6c046e568c4bb5563580ac7df5 (patch)
tree54d2eabb6f531b88b903e427c3f8ad93d60ae767
parent1b9e54a0dc8245aec4ef4118c186eeb33524c513 (diff)
downloadmediapointer-dvb-s2-4c9626ba54449b6c046e568c4bb5563580ac7df5.tar.gz
mediapointer-dvb-s2-4c9626ba54449b6c046e568c4bb5563580ac7df5.tar.bz2
Removed audio DMA enabling from cx88-core
- Removed code that enables audio DMA transfers at cx88-core. - This stuff should be at cx88-alsa when ready. Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
-rw-r--r--linux/drivers/media/video/cx88/cx88-core.c4
-rw-r--r--v4l/ChangeLog8
2 files changed, 11 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-core.c b/linux/drivers/media/video/cx88/cx88-core.c
index 1b2d591d0..22e6b3830 100644
--- a/linux/drivers/media/video/cx88/cx88-core.c
+++ b/linux/drivers/media/video/cx88/cx88-core.c
@@ -1,5 +1,5 @@
/*
- * $Id: cx88-core.c,v 1.47 2005/11/06 17:01:47 mchehab Exp $
+ * $Id: cx88-core.c,v 1.48 2005/11/18 15:13:50 mchehab Exp $
*
* device driver for Conexant 2388x based TV cards
* driver core
@@ -916,9 +916,11 @@ static int set_tvaudio(struct cx88_core *core)
cx88_set_tvaudio(core);
/* cx88_set_stereo(dev,V4L2_TUNER_MODE_STEREO); */
+#if 0 /* This is needed only on cx88-alsa */
cx_write(MO_AUDD_LNGTH, 128); /* fifo size */
cx_write(MO_AUDR_LNGTH, 128); /* fifo size */
cx_write(MO_AUD_DMACNTRL, 0x03); /* need audio fifo */
+#endif
return 0;
}
diff --git a/v4l/ChangeLog b/v4l/ChangeLog
index f462b3f27..9ad41aa9e 100644
--- a/v4l/ChangeLog
+++ b/v4l/ChangeLog
@@ -1,3 +1,11 @@
+2005-11-18 15:10 mchehab
+
+ * ../linux/drivers/media/video/cx88/cx88-core.c: (set_tvaudio):
+ - Commented code that enables audio DMA transfers at cx88-core.
+ - This stuff should be at cx88-alsa when ready.
+
+ Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
+
2005-11-18 15:04 mchehab
* ../linux/drivers/media/video/cx88/cx88-tvaudio.c: