Cosmetic patch aligning values in the ethtool get_coalesce function.
This patch do not modify in anyway the driver's behaviour.
Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
 {
        struct mvpp2_port *port = netdev_priv(dev);
 
-       c->rx_coalesce_usecs        = port->rxqs[0]->time_coal;
-       c->rx_max_coalesced_frames  = port->rxqs[0]->pkts_coal;
-       c->tx_max_coalesced_frames =  port->txqs[0]->done_pkts_coal;
+       c->rx_coalesce_usecs       = port->rxqs[0]->time_coal;
+       c->rx_max_coalesced_frames = port->rxqs[0]->pkts_coal;
+       c->tx_max_coalesced_frames = port->txqs[0]->done_pkts_coal;
        return 0;
 }