diff options
author | Gerd Knorr <devnull@localhost> | 2005-01-19 12:01:55 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2005-01-19 12:01:55 +0000 |
commit | 7383883c3f0f6f25ce07a3bfcef7a2453ff4849a (patch) | |
tree | b1b731066e00c95779d427946240b609459a4643 /linux/drivers/media/video/cx88/cx88-core.c | |
parent | 574aab8c5b773ab7ebe07978d2e625af1fe8a951 (diff) | |
download | mediapointer-dvb-s2-7383883c3f0f6f25ce07a3bfcef7a2453ff4849a.tar.gz mediapointer-dvb-s2-7383883c3f0f6f25ce07a3bfcef7a2453ff4849a.tar.bz2 |
- audio fifo fixup.
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-core.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-core.c b/linux/drivers/media/video/cx88/cx88-core.c index 67cd3c8ea..827f3c388 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.23 2005/01/04 13:34:11 kraxel Exp $ + * $Id: cx88-core.c,v 1.24 2005/01/19 12:01:55 kraxel Exp $ * * device driver for Conexant 2388x based TV cards * driver core @@ -911,8 +911,8 @@ static int set_tvaudio(struct cx88_core *core) cx88_set_tvaudio(core); // cx88_set_stereo(dev,V4L2_TUNER_MODE_STEREO); - cx_write(MO_AUDD_LNGTH, 128/8); /* fifo size */ - cx_write(MO_AUDR_LNGTH, 128/8); /* fifo size */ + 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 */ return 0; } |