chelsio: clean up indentation issue
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>
This commit is contained in:
parent
0bb16830eb
commit
7831216b00
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue