2015-04-30 14:07, Michal Jastrzebski:
> From: Maciej Gajdzica <maciejx.t.gajdzica at intel.com>
[...]
>  struct rte_port_out_ops {
> -     rte_port_out_op_create f_create;   /**< Create */
> -     rte_port_out_op_free f_free;       /**< Free */
> -     rte_port_out_op_tx f_tx;           /**< Packet TX (single packet) */
> -     rte_port_out_op_tx_bulk f_tx_bulk; /**< Packet TX (packet burst) */
> -     rte_port_out_op_flush f_flush;     /**< Flush */
> +     rte_port_out_op_create f_create;                /**< Create */
> +     rte_port_out_op_free f_free;                    /**< Free */
> +     rte_port_out_op_tx f_tx;                                /**< Packet TX 
> (single packet) */
> +     rte_port_out_op_tx_bulk f_tx_bulk;              /**< Packet TX (packet 
> burst) */
> +     rte_port_out_op_flush f_flush;                  /**< Flush */
> +     rte_port_out_op_stats_read f_stats;     /**< Stats */
>  };

Please avoid changing alignment if not really necessary.
Here it seems you want to have some space between "f_stats;" and its comment.
So you should use spaces for alignment of the comments and not hard-tabs,
even less hard-tabs used as 4-char like here.

Reply via email to