diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-02-27 19:33:21 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-02-27 19:33:21 +0100 |
commit | 89332c1ec9b859922645e86f2fef316ebdc3ff28 (patch) | |
tree | f263c54140278889376fa4e6f586194a89fc430d /linux/drivers/media/video/ivtv/ivtv-irq.c | |
parent | 91df4049ebb4764105976c5affe3e751c55c1b61 (diff) | |
download | mediapointer-dvb-s2-89332c1ec9b859922645e86f2fef316ebdc3ff28.tar.gz mediapointer-dvb-s2-89332c1ec9b859922645e86f2fef316ebdc3ff28.tar.bz2 |
Fix comment style and set default debug level to 0
From: Hans Verkuil <hverkuil@xs4all.nl>
Convert the '//' comments to kernel approved /* */ style comments.
Set the default debug level to 0. As a result of which change some
DEBUG_WARNs to errors or remove them altogether.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/ivtv/ivtv-irq.c')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-irq.c b/linux/drivers/media/video/ivtv/ivtv-irq.c index 21bb88a2f..da00d7c9a 100644 --- a/linux/drivers/media/video/ivtv/ivtv-irq.c +++ b/linux/drivers/media/video/ivtv/ivtv-irq.c @@ -487,7 +487,7 @@ static void ivtv_irq_dma_err(struct ivtv *itv) itv->cur_dma_stream >= 0 && itv->cur_dma_stream < IVTV_MAX_STREAMS) { struct ivtv_stream *s = &itv->streams[itv->cur_dma_stream]; - // retry + /* retry */ write_reg(read_reg(IVTV_REG_DMASTATUS) & 3, IVTV_REG_DMASTATUS); if (s->type >= IVTV_DEC_STREAM_TYPE_MPG) ivtv_dma_dec_start(s); @@ -772,7 +772,7 @@ irqreturn_t ivtv_irq_handler(int irq, void *dev_id) if (combo & IVTV_IRQ_ENC_VIM_RST) { IVTV_DEBUG_IRQ("VIM RST\n"); - //ivtv_vapi(itv, CX2341X_ENC_REFRESH_INPUT, 0); + /*ivtv_vapi(itv, CX2341X_ENC_REFRESH_INPUT, 0); */ } if (combo & IVTV_IRQ_DEC_AUD_MODE_CHG) { |