diff options
author | Joe Perches <joe@perches.com> | 2013-10-08 16:07:22 -0700 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2013-10-14 10:10:00 -0700 |
commit | 2b50176d11866e59208a4ed1623b3fc0ca322690 (patch) | |
tree | 489ee9ea65e52f3e90df7be4986f3723fb859a07 /drivers/infiniband/hw/mthca/mthca_eq.c | |
parent | 4a10c2ac2f368583138b774ca41fac4207911983 (diff) |
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/mthca_eq.c')
-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 7c9d35f39d7..69020173899 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; |