chelsio: clean up indentation issue
authorColin Ian King <colin.king@canonical.com>
Sat, 2 Feb 2019 11:33:51 +0000 (11:33 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 3 Feb 2019 04:14:38 +0000 (20:14 -0800)
The assignment to size is indented too far, fix this and join
two lines into one.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb/sge.c

index 30de26e..47b5c8e 100644 (file)
@@ -585,8 +585,7 @@ static int alloc_rx_resources(struct sge *sge, struct sge_params *p)
                sizeof(struct cpl_rx_data) +
                sge->freelQ[!sge->jumbo_fl].dma_offset;
 
-               size = (16 * 1024) -
-                   SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
+       size = (16 * 1024) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
 
        sge->freelQ[sge->jumbo_fl].rx_buffer_size = size;