[media] drivers/media/dvb-core/dvb_demux.c: removes unnecessary semicolon

removes unnecessary semicolon
Found by Coccinelle: http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Peter Senna Tschudin 2012-09-07 11:24:44 -03:00 committed by Mauro Carvalho Chehab
parent 150a136368
commit c2c9036545
1 changed files with 5 additions and 5 deletions

View File

@ -424,12 +424,12 @@ static void dvb_dmx_swfilter_packet(struct dvb_demux *demux, const u8 *buf)
printk(KERN_INFO "TS speed %llu Kbits/sec \n", printk(KERN_INFO "TS speed %llu Kbits/sec \n",
div64_u64(speed_bytes, div64_u64(speed_bytes,
speed_timedelta)); speed_timedelta));
}; }
demux->speed_last_time = cur_time; demux->speed_last_time = cur_time;
demux->speed_pkts_cnt = 0; demux->speed_pkts_cnt = 0;
}; }
}; }
if (buf[1] & 0x80) { if (buf[1] & 0x80) {
dprintk_tscheck("TEI detected. " dprintk_tscheck("TEI detected. "
@ -451,9 +451,9 @@ static void dvb_dmx_swfilter_packet(struct dvb_demux *demux, const u8 *buf)
buf[3] & 0xf); buf[3] & 0xf);
demux->cnt_storage[pid] = ((buf[3] & 0xf) + 1)&0xf; demux->cnt_storage[pid] = ((buf[3] & 0xf) + 1)&0xf;
}; }
/* end check */ /* end check */
}; }
list_for_each_entry(feed, &demux->feed_list, list_head) { list_for_each_entry(feed, &demux->feed_list, list_head) {
if ((feed->pid != pid) && (feed->pid != 0x2000)) if ((feed->pid != pid) && (feed->pid != 0x2000))