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>
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