network: Add missing fall through declaration
diff --git a/profiles/network/bnep.c b/profiles/network/bnep.c
index 9bf0b18..789c18d 100644
--- a/profiles/network/bnep.c
+++ b/profiles/network/bnep.c
@@ -564,9 +564,7 @@
 			return BNEP_CONN_INVALID_DST;
 		if (memcmp(&source[4], bt_base, sizeof(bt_base)) != 0)
 			return BNEP_CONN_INVALID_SRC;
-
-		/* Intentional no-break */
-
+		/* fall through */
 	case 4: /* UUID32 */
 		val = get_be32(dest);
 		if (val > 0xffff)
diff --git a/profiles/network/server.c b/profiles/network/server.c
index e69ffaf..175e582 100644
--- a/profiles/network/server.c
+++ b/profiles/network/server.c
@@ -354,9 +354,7 @@
 	case 16:
 		if (memcmp(&req->service[4], bt_base, sizeof(bt_base)) != 0)
 			break;
-
-		/* Intentional no-brake */
-
+		/* fall through */
 	case 4:
 		val = get_be32(req->service);
 		if (val > 0xffff)