mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
staging: slicoss: Remove unnecessary braces {}
Removes unnecessary braces {} on both arms of an if-else block as they
have a single statement each. Issue detected by checkpatch.
Signed-off-by: Rehas Sachdeva <aquannie@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1462b30786
commit
baa30626a9
@@ -1630,11 +1630,10 @@ static u32 slic_rcvqueue_reinsert(struct adapter *adapter, struct sk_buff *skb)
|
||||
dev_err(dev, " rcvq->tail[%p]\n", rcvq->tail);
|
||||
dev_err(dev, " rcvq->count[%x]\n", rcvq->count);
|
||||
}
|
||||
if (paddrh == 0) {
|
||||
if (paddrh == 0)
|
||||
slic_write32(adapter, SLIC_REG_HBAR, (u32)paddrl);
|
||||
} else {
|
||||
else
|
||||
slic_write64(adapter, SLIC_REG_HBAR64, paddrl, paddrh);
|
||||
}
|
||||
if (rcvq->head)
|
||||
rcvq->tail->next = skb;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user