*  when the second packet arrives.
  *
  * Fix:
- * when demux is started, let feed->pusi_seen = 0 to
+ * when demux is started, let feed->pusi_seen = false to
  * prevent initial feeding of garbage from the end of
  * previous section. When you for the first time see PUSI=1
- * then set feed->pusi_seen = 1
+ * then set feed->pusi_seen = true
  */
 static int dvb_dmx_swfilter_section_copy_dump(struct dvb_demux_feed *feed,
                                              const u8 *buf, u8 len)
                 */
 #endif
                /*
-                * Discontinuity detected. Reset pusi_seen = 0 to
+                * Discontinuity detected. Reset pusi_seen to
                 * stop feeding of suspicious data until next PUSI=1 arrives
                 */
-               feed->pusi_seen = 0;
+               feed->pusi_seen = false;
                dvb_dmx_swfilter_section_new(feed);
        }
 
 
                        dvb_dmx_swfilter_section_copy_dump(feed, before,
                                                           before_len);
-                       /* before start of new section, set pusi_seen = 1 */
-                       feed->pusi_seen = 1;
+                       /* before start of new section, set pusi_seen */
+                       feed->pusi_seen = true;
                        dvb_dmx_swfilter_section_new(feed);
                        dvb_dmx_swfilter_section_copy_dump(feed, after,
                                                           after_len);
 
        dprintk(2, "av7110: %p\n", budget);
 
        spin_lock(&budget->feedlock1);
-       feed->pusi_seen = 0; /* have a clean section start */
+       feed->pusi_seen = false; /* have a clean section start */
        status = start_ts_capture(budget);
        spin_unlock(&budget->feedlock1);
        return status;
 
                return -EINVAL;
 
        spin_lock(&budget->feedlock);
-       feed->pusi_seen = 0; /* have a clean section start */
+       feed->pusi_seen = false; /* have a clean section start */
        if (budget->feeding++ == 0)
                status = start_ts_capture(budget);
        spin_unlock(&budget->feedlock);