projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0bb1683
)
chelsio: clean up indentation issue
author
Colin Ian King
<colin.king@canonical.com>
Sat, 2 Feb 2019 11:33:51 +0000
(11:33 +0000)
committer
David 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
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/chelsio/cxgb/sge.c
b/drivers/net/ethernet/chelsio/cxgb/sge.c
index 30de26ef3da4bdc6ac25bd75df9466f6be398a26..47b5c8e2104b7d5a2f0a329dc0b4d215ba8cd543 100644
(file)
--- a/
drivers/net/ethernet/chelsio/cxgb/sge.c
+++ b/
drivers/net/ethernet/chelsio/cxgb/sge.c
@@
-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;