*
  * This function callback prototype, provided by the client of the demux API,
  * is called from the demux code. The function is only called when filtering
- * on ae TS feed has been enabled using the start_filtering() function at
+ * on a TS feed has been enabled using the start_filtering\(\) function at
  * the &dmx_demux.
  * Any TS packets that match the filter settings are copied to a circular
  * buffer. The filtered TS packets are delivered to the client using this
  * will also be sent to the hardware MPEG decoder.
  *
  * Return:
- *     0, on success;
- *     -EOVERFLOW, on buffer overflow.
+ *
+ * - 0, on success;
+ *
+ * - -EOVERFLOW, on buffer overflow.
  */
 typedef int (*dmx_ts_cb)(const u8 *buffer1,
                         size_t buffer1_length,
                              size_t buffer2_len,
                              struct dmx_section_filter *source);
 
-/*--------------------------------------------------------------------------*/
-/* DVB Front-End */
-/*--------------------------------------------------------------------------*/
+/*
+ * DVB Front-End
+ */
 
 /**
  * enum dmx_frontend_source - Used to identify the type of frontend
 
 /*
  * Demux resource type identifier.
-*/
-
-/*
- * DMX_FE_ENTRY(): Casts elements in the list of registered
- * front-ends from the generic type struct list_head
- * to the type * struct dmx_frontend
- *.
-*/
+ */
 
+/**
+ * DMX_FE_ENTRY - Casts elements in the list of registered
+ *               front-ends from the generic type struct list_head
+ *               to the type * struct dmx_frontend
+ *
+ * @list: list of struct dmx_frontend
+ */
 #define DMX_FE_ENTRY(list) \
        list_entry(list, struct dmx_frontend, connectivity_list)
 
  *     0 on success;
  *     -EINVAL on bad parameter.
  */
-
 struct dmx_demux {
        enum dmx_demux_caps capabilities;
        struct dmx_frontend *frontend;
 
        int (*get_pes_pids)(struct dmx_demux *demux, u16 *pids);
 
-       /* private: Not used upstream and never documented */
-#if 0
-       int (*get_caps)(struct dmx_demux *demux, struct dmx_caps *caps);
-       int (*set_source)(struct dmx_demux *demux, const dmx_source_t *src);
-#endif
        /*
         * private: Only used at av7110, to read some data from firmware.
         *      As this was never documented, we have no clue about what's