IB/hfi1: Remove extra brackets from an if

A recent patch to hfi1 left behind a checkpatch error.

Fixes: fb24ea52f7 ("drivers: Remove explicit invocations of mmiowb()")
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
This commit is contained in:
Dennis Dalessandro 2019-05-24 11:44:58 -04:00 коммит произвёл Jason Gunthorpe
Родитель ea99697458
Коммит 5f5e4eb4fb
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1577,10 +1577,9 @@ void hfi1_sc_wantpiobuf_intr(struct send_context *sc, u32 needint)
else else
sc_del_credit_return_intr(sc); sc_del_credit_return_intr(sc);
trace_hfi1_wantpiointr(sc, needint, sc->credit_ctrl); trace_hfi1_wantpiointr(sc, needint, sc->credit_ctrl);
if (needint) { if (needint)
sc_return_credits(sc); sc_return_credits(sc);
} }
}
/** /**
* sc_piobufavail - callback when a PIO buffer is available * sc_piobufavail - callback when a PIO buffer is available