Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci
CC: Matan Barak <[email protected]> Signed-off-by: Julia Lawall <[email protected]> Signed-off-by: Fengguang Wu <[email protected]> --- uverbs_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/infiniband/core/uverbs_ioctl.c +++ b/drivers/infiniband/core/uverbs_ioctl.c @@ -114,7 +114,7 @@ static int uverbs_process_attr(struct ib break; default: return -EOPNOTSUPP; - }; + } set_bit(attr_id, attr_array->valid_bitmap); return 0;

