mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 13:43:55 +08:00
staging: lustre: lnet: klnds: socklnd: Remove unnecessary line continuations
Fixes checkpatch warning: WARNING: Avoid unnecessary line continuations Signed-off-by: Anchal Jain <anchalj109@gmail.com> Acked-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a2921e2fc0
commit
19c5a689cc
@ -35,8 +35,8 @@ ksocknal_alloc_tx(int type, int size)
|
||||
spin_lock(&ksocknal_data.ksnd_tx_lock);
|
||||
|
||||
if (!list_empty(&ksocknal_data.ksnd_idle_noop_txs)) {
|
||||
tx = list_entry(ksocknal_data.ksnd_idle_noop_txs. \
|
||||
next, struct ksock_tx, tx_list);
|
||||
tx = list_entry(ksocknal_data.ksnd_idle_noop_txs.next,
|
||||
struct ksock_tx, tx_list);
|
||||
LASSERT(tx->tx_desc_size == size);
|
||||
list_del(&tx->tx_list);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user