Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c842dd2d authored by Matthias Beyer's avatar Matthias Beyer Committed by Greg Kroah-Hartman
Browse files

Staging: bcm: PHSModule.c: Simplified nested if statements by linking them...


Staging: bcm: PHSModule.c: Simplified nested if statements by linking them with logical AND in GetServiceFlowEntry()

Signed-off-by: default avatarMatthias Beyer <mail@beyermatthias.de>
Reviewed-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cf423564
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -963,13 +963,11 @@ UINT GetServiceFlowEntry(IN struct bcm_phs_table *psServiceFlowTable,

	for (i = 0; i < MAX_SERVICEFLOWS; i++) {
		curr_sf_list = &psServiceFlowTable->stSFList[i];
		if (curr_sf_list->bUsed) {
			if (curr_sf_list->uiVcid == uiVcid) {
		if (curr_sf_list->bUsed && (curr_sf_list->uiVcid == uiVcid)) {
			*ppstServiceFlowEntry = curr_sf_list;
			return i;
		}
	}
	}

	*ppstServiceFlowEntry = NULL;
	return PHS_INVALID_TABLE_INDEX;