Skip to content
Snippets Groups Projects
Commit 7831216b authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

chelsio: clean up indentation issue


The assignment to size is indented too far, fix this and join
two lines into one.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0bb16830
No related branches found
No related tags found
No related merge requests found
...@@ -585,8 +585,7 @@ static int alloc_rx_resources(struct sge *sge, struct sge_params *p) ...@@ -585,8 +585,7 @@ static int alloc_rx_resources(struct sge *sge, struct sge_params *p)
sizeof(struct cpl_rx_data) + sizeof(struct cpl_rx_data) +
sge->freelQ[!sge->jumbo_fl].dma_offset; sge->freelQ[!sge->jumbo_fl].dma_offset;
size = (16 * 1024) - size = (16 * 1024) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
sge->freelQ[sge->jumbo_fl].rx_buffer_size = size; sge->freelQ[sge->jumbo_fl].rx_buffer_size = size;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment