net/mlx4: remove unneeded semicolon
Remove unneeded semicolon. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Reviewed-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5c423d7114
commit
bec03debe2
|
@ -3274,7 +3274,7 @@ int mlx4_set_vf_link_state(struct mlx4_dev *dev, int port, int vf, int link_stat
|
|||
mlx4_warn(dev, "unknown value for link_state %02x on slave %d port %d\n",
|
||||
link_state, slave, port);
|
||||
return -EINVAL;
|
||||
};
|
||||
}
|
||||
s_info = &priv->mfunc.master.vf_admin[slave].vport[port];
|
||||
s_info->link_state = link_state;
|
||||
|
||||
|
|
|
@ -820,7 +820,7 @@ static int mlx4_eq_int(struct mlx4_dev *dev, struct mlx4_eq *eq)
|
|||
!!(eqe->owner & 0x80) ^
|
||||
!!(eq->cons_index & eq->nent) ? "HW" : "SW");
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
++eq->cons_index;
|
||||
eqes_found = 1;
|
||||
|
|
Loading…
Reference in New Issue