diff options
author | Matthias Beyer <mail@beyermatthias.de> | 2014-07-15 09:43:03 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-15 08:09:48 -0700 |
commit | babb7f94795009eb2500fc25b96dddc811991487 (patch) | |
tree | 301d20c768ea39c641d3cfa2d7aaebb7a70130cf | |
parent | a984b124aab6e7baf3f936d94a0b4678772422af (diff) | |
download | linux-babb7f94795009eb2500fc25b96dddc811991487.tar.gz linux-babb7f94795009eb2500fc25b96dddc811991487.tar.bz2 linux-babb7f94795009eb2500fc25b96dddc811991487.zip |
Staging: bcm: PHSModule.c: Whitespace cleanup in PhsCompress()
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, 6 insertions, 3 deletions
diff --git a/drivers/staging/bcm/PHSModule.c b/drivers/staging/bcm/PHSModule.c index 64319124343d..e01c5cfbaf49 100644 --- a/drivers/staging/bcm/PHSModule.c +++ b/drivers/staging/bcm/PHSModule.c @@ -744,7 +744,7 @@ static ULONG PhsCompress(IN void *pvContext, /* Retrieve the SFID Entry Index for requested Service Flow */ nSFIndex = GetServiceFlowEntry(pDeviceExtension->pstServiceFlowPhsRulesTable, - uiVcid, &pstServiceFlowEntry); + uiVcid, &pstServiceFlowEntry); if (nSFIndex == PHS_INVALID_TABLE_INDEX) { BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, PHS_SEND, DBG_LVL_ALL, "SFID Match Failed\n"); @@ -773,8 +773,11 @@ static ULONG PhsCompress(IN void *pvContext, } /* Compress Packet */ - lStatus = phs_compress(pstPhsRule, (PUCHAR)pvInputBuffer, - (PUCHAR)pvOutputBuffer, pOldHeaderSize, pNewHeaderSize); + lStatus = phs_compress(pstPhsRule, + (PUCHAR)pvInputBuffer, + (PUCHAR)pvOutputBuffer, + pOldHeaderSize, + pNewHeaderSize); if (lStatus == STATUS_PHS_COMPRESSED) { pstPhsRule->PHSModifiedBytes += |