aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/bcm/HostMIBSInterface.h
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-11-25 19:28:59 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-26 16:07:57 -0800
commit8c7d51a3e83cfd508e7e766177be57ec7c829f54 (patch)
treef1a7b4fc0d7f4cab9731ab04cabc8b0513890892 /drivers/staging/bcm/HostMIBSInterface.h
parentba738b43e4d8f82aa17767f9d4707ac301720cbc (diff)
Staging: bcm: Remove typedef for _S_MIBS_EXTSERVICEFLOW_PARAMETERS and call directly.
This patch removes typedef for _S_MIBS_EXTSERVICEFLOW_PARAMETERS, and changes the name of the struct to bcm_mibs_parameters. In addition, any calls to typedef S_MIBS_EXTSERVICEFLOW_PARAMETERS are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/HostMIBSInterface.h')
-rw-r--r--drivers/staging/bcm/HostMIBSInterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/bcm/HostMIBSInterface.h b/drivers/staging/bcm/HostMIBSInterface.h
index 0698ce04e8f..a09e3540fde 100644
--- a/drivers/staging/bcm/HostMIBSInterface.h
+++ b/drivers/staging/bcm/HostMIBSInterface.h
@@ -113,7 +113,7 @@ typedef struct _S_MIBS_PHS_RULE {
unsigned long PHSErrorNumPackets;
} S_MIBS_PHS_RULE;
-typedef struct _S_MIBS_EXTSERVICEFLOW_PARAMETERS {
+struct bcm_mibs_parameters {
u32 wmanIfSfid;
u32 wmanIfCmnCpsSfState;
u32 wmanIfCmnCpsMaxSustainedRate;
@@ -135,7 +135,7 @@ typedef struct _S_MIBS_EXTSERVICEFLOW_PARAMETERS {
u32 wmanIfCmnCpsReqTxPolicy;
u32 wmanIfCmnSfCsSpecification;
u32 wmanIfCmnCpsTargetSaid;
-} S_MIBS_EXTSERVICEFLOW_PARAMETERS;
+};
struct bcm_mibs_table {
unsigned long ulSFID;
@@ -163,7 +163,7 @@ struct bcm_mibs_table {
unsigned int NumOfPacketsSent;
unsigned char ucDirection;
unsigned short usCID;
- S_MIBS_EXTSERVICEFLOW_PARAMETERS stMibsExtServiceFlowTable;
+ struct bcm_mibs_parameters stMibsExtServiceFlowTable;
unsigned int uiCurrentRxRate;
unsigned int uiThisPeriodRxBytes;
unsigned int uiTotalRxBytes;