Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 392cc7af authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

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: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 68d84ae0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -898,14 +898,14 @@ static void prepare_secfilters(struct dvb_demux_feed *dvbdmxfeed)
		return;
	do {
		sf = &f->filter;
		doneq = 0;
		doneq = false;
		for (i = 0; i < DVB_DEMUX_MASK_MAX; i++) {
			mode = sf->filter_mode[i];
			mask = sf->filter_mask[i];
			f->maskandmode[i] = mask & mode;
			doneq |= f->maskandnotmode[i] = mask & ~mode;
		}
		f->doneq = doneq ? 1 : 0;
		f->doneq = doneq ? true : false;
	} while ((f = f->next));
}

+1 −1
Original line number Diff line number Diff line
@@ -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;