diff options
author | 2012-12-20 00:31:30 -0500 | |
---|---|---|
committer | 2013-01-07 10:54:49 -0800 | |
commit | db134a63cfcd2386a3506f85fbdf906df17f886a (patch) | |
tree | a067eb42e38bc5d009c3bccb7c33c023930b9e2e /drivers/staging/bcm/PHSModule.h | |
parent | Staging: bcm: Remove typedef for _S_SERVICEFLOW_TABLE and call directly. (diff) | |
download | linux-dev-db134a63cfcd2386a3506f85fbdf906df17f886a.tar.xz linux-dev-db134a63cfcd2386a3506f85fbdf906df17f886a.zip |
Staging: bcm: Remove typedef for _S_SERVICEFLOW_ENTRY and call directly.
This patch removes typedef for _S_SERVICEFLOW_ENTRY, and
changes the name of the struct to bcm_phs_entry. In
addition, any calls to struct "_S_SERVICEFLOW_ENTRY" are
changed to call directly.
Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/PHSModule.h')
-rw-r--r-- | drivers/staging/bcm/PHSModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/bcm/PHSModule.h b/drivers/staging/bcm/PHSModule.h index 6973cba9e522..5da3fa48b4e2 100644 --- a/drivers/staging/bcm/PHSModule.h +++ b/drivers/staging/bcm/PHSModule.h @@ -41,7 +41,7 @@ ULONG PhsDeleteSFRules(void* pvContext,B_UINT16 uiVcid) ; BOOLEAN ValidatePHSRule(S_PHS_RULE *psPhsRule); -UINT GetServiceFlowEntry(struct bcm_phs_table *psServiceFlowTable,B_UINT16 uiVcid,S_SERVICEFLOW_ENTRY **ppstServiceFlowEntry); +UINT GetServiceFlowEntry(struct bcm_phs_table *psServiceFlowTable,B_UINT16 uiVcid, struct bcm_phs_entry **ppstServiceFlowEntry); void DumpPhsRules(struct bcm_phs_extension *pDeviceExtension); |