diff options
author | Matthias Beyer <mail@beyermatthias.de> | 2014-07-15 09:43:12 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-15 08:09:49 -0700 |
commit | 18002f567fcbfcaf36c1ed359bca603d2cc58b8e (patch) | |
tree | f56c7223be9f5345e5a76b1c18cec1a33ab7797f | |
parent | 1c53f0877e874e4713e73342e51f8f3543fd59f9 (diff) | |
download | linux-18002f567fcbfcaf36c1ed359bca603d2cc58b8e.tar.gz linux-18002f567fcbfcaf36c1ed359bca603d2cc58b8e.tar.bz2 linux-18002f567fcbfcaf36c1ed359bca603d2cc58b8e.zip |
Staging: bcm: PHSModule.c: Simplified nested if statements by linking them with logical AND in GetPhsRuleEntry()
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/bcm/PHSModule.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/staging/bcm/PHSModule.c b/drivers/staging/bcm/PHSModule.c index 4074eb8550bd..ceb57587f40a 100644 --- a/drivers/staging/bcm/PHSModule.c +++ b/drivers/staging/bcm/PHSModule.c @@ -1017,11 +1017,10 @@ static UINT GetPhsRuleEntry(IN struct bcm_phs_classifier_table *pstClassifierTab pstClassifierRule = &pstClassifierTable->stOldPhsRulesList[i]; - if (pstClassifierRule->bUsed) { - if (pstClassifierRule->u8PHSI == uiPHSI) { - *ppstPhsRule = pstClassifierRule->pstPhsRule; - return i; - } + if (pstClassifierRule->bUsed && + (pstClassifierRule->u8PHSI == uiPHSI)) { + *ppstPhsRule = pstClassifierRule->pstPhsRule; + return i; } } |