diff mbox

IB/core: fix semicolon.cocci warnings

Message ID alpine.DEB.2.20.1706072224490.2211@hadrien (mailing list archive)
State Not Applicable
Headers show

Commit Message

Julia Lawall June 7, 2017, 8:26 p.m. UTC
Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

CC: Matan Barak <matanb@mellanox.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 uverbs_ioctl.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Matan Barak June 8, 2017, 2:10 p.m. UTC | #1
On Wed, Jun 7, 2017 at 11:26 PM, Julia Lawall <julia.lawall@lip6.fr> wrote:
> Remove unneeded semicolon.
>
> Generated by: scripts/coccinelle/misc/semicolon.cocci

Thanks. I'll fix this in the next version of this series.
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

--- 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;