diff options
author | Joe Perches <joe@perches.com> | 2013-10-09 01:07:22 +0200 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2013-10-14 19:10:00 +0200 |
commit | 2b50176d11866e59208a4ed1623b3fc0ca322690 (patch) | |
tree | 489ee9ea65e52f3e90df7be4986f3723fb859a07 /drivers/infiniband/hw/mthca | |
parent | Linux 3.12-rc2 (diff) | |
download | linux-2b50176d11866e59208a4ed1623b3fc0ca322690.tar.xz linux-2b50176d11866e59208a4ed1623b3fc0ca322690.zip |
IB: Remove unnecessary semicolons
These aren't necessary after switch blocks.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband/hw/mthca')
-rw-r--r-- | drivers/infiniband/hw/mthca/mthca_eq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_eq.c b/drivers/infiniband/hw/mthca/mthca_eq.c index 7c9d35f39d75..690201738993 100644 --- a/drivers/infiniband/hw/mthca/mthca_eq.c +++ b/drivers/infiniband/hw/mthca/mthca_eq.c @@ -357,7 +357,7 @@ static int mthca_eq_int(struct mthca_dev *dev, struct mthca_eq *eq) mthca_warn(dev, "Unhandled event %02x(%02x) on EQ %d\n", eqe->type, eqe->subtype, eq->eqn); break; - }; + } set_eqe_hw(eqe); ++eq->cons_index; |