From f0be707d74e62c08a44870e49b42ec0008ecc891 Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Tue, 9 Aug 2016 19:41:46 +0000 Subject: sys/dev: replace comma with semicolon when pertinent. Uses of commas instead of a semicolons can easily go undetected. The comma can serve as a statement separator but this shouldn't be abused when statements are meant to be standalone. Detected with devel/coccinelle following a hint from DragonFlyBSD. MFC after: 1 month --- sys/dev/bxe/bxe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/bxe') diff --git a/sys/dev/bxe/bxe.c b/sys/dev/bxe/bxe.c index 329801d24eb9..a5c13ea600f3 100644 --- a/sys/dev/bxe/bxe.c +++ b/sys/dev/bxe/bxe.c @@ -13332,7 +13332,7 @@ bxe_get_shmem_info(struct bxe_softc *sc) /* get the port feature config */ sc->port.config = - SHMEM_RD(sc, dev_info.port_feature_config[port].config), + SHMEM_RD(sc, dev_info.port_feature_config[port].config); /* get the link params */ sc->link_params.speed_cap_mask[0] = -- cgit v1.2.3