summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2014-08-29 08:50:26 (GMT)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-11-03 10:31:01 (GMT)
commitd386259f8ee95d260ecb99aad3afc434819491ec (patch)
treef96a8e616ba90e53678428db18a9199d18b7d853
parentb8f884164bdfbcecf61e891b52d8a03fec9ed461 (diff)
downloadlinux-d386259f8ee95d260ecb99aad3afc434819491ec.tar.xz
[media] cx88: don't pollute the kernel log
There is no reason to dump the sram code to the kernel log when you stop streaming. Remove those calls to cx88_sram_channel_dump. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r--drivers/media/pci/cx88/cx88-vbi.c2
-rw-r--r--drivers/media/pci/cx88/cx88-video.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/drivers/media/pci/cx88/cx88-vbi.c b/drivers/media/pci/cx88/cx88-vbi.c
index 4e0747a..042f545 100644
--- a/drivers/media/pci/cx88/cx88-vbi.c
+++ b/drivers/media/pci/cx88/cx88-vbi.c
@@ -203,8 +203,6 @@ static void stop_streaming(struct vb2_queue *q)
struct cx88_dmaqueue *dmaq = &dev->vbiq;
unsigned long flags;
- cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
-
cx_clear(MO_VID_DMACNTRL, 0x11);
cx_clear(VID_CAPTURE_CONTROL, 0x06);
cx8800_stop_vbi_dma(dev);
diff --git a/drivers/media/pci/cx88/cx88-video.c b/drivers/media/pci/cx88/cx88-video.c
index a74e21d..85c3d0c 100644
--- a/drivers/media/pci/cx88/cx88-video.c
+++ b/drivers/media/pci/cx88/cx88-video.c
@@ -563,8 +563,6 @@ static void stop_streaming(struct vb2_queue *q)
struct cx88_dmaqueue *dmaq = &dev->vidq;
unsigned long flags;
- cx88_sram_channel_dump(core, &cx88_sram_channels[SRAM_CH21]);
-
cx_clear(MO_VID_DMACNTRL, 0x11);
cx_clear(VID_CAPTURE_CONTROL, 0x06);
spin_lock_irqsave(&dev->slock, flags);