summaryrefslogtreecommitdiff
path: root/drivers/media/dvb-core/dvb_demux.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2017-09-20 01:10:13 +0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-10-11 20:10:35 +0300
commit392cc7afbb4d8a649636f7fdd99ed2278f08457e (patch)
treeea6002978671bf32636b65bb4d02d12a26e5de2e /drivers/media/dvb-core/dvb_demux.h
parent68d84ae02ff8f2b9c36799058c3ce2a7db7fca67 (diff)
downloadlinux-392cc7afbb4d8a649636f7fdd99ed2278f08457e.tar.xz
media: dvb_demux: mark a boolean field as such
The struct dvb_demux_filter.doneq is a boolean. Mark it as such, as it helps to understand what it does. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/dvb-core/dvb_demux.h')
-rw-r--r--drivers/media/dvb-core/dvb_demux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-core/dvb_demux.h b/drivers/media/dvb-core/dvb_demux.h
index 045f7fd1a8b1..700887938145 100644
--- a/drivers/media/dvb-core/dvb_demux.h
+++ b/drivers/media/dvb-core/dvb_demux.h
@@ -64,7 +64,7 @@ struct dvb_demux_filter {
struct dmx_section_filter filter;
u8 maskandmode[DMX_MAX_FILTER_SIZE];
u8 maskandnotmode[DMX_MAX_FILTER_SIZE];
- int doneq;
+ bool doneq;
struct dvb_demux_filter *next;
struct dvb_demux_feed *feed;