Staging: bcm: Replace USHORT with unsigned short in HostMIBSInterface.h
This patch replaces "USHORT" with "unsigned short" in HostMIBSInterface.h Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
36e0ae2914
commit
7d5691e5ce
@ -69,7 +69,7 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
|
|||||||
unsigned char ucReserved[2];
|
unsigned char ucReserved[2];
|
||||||
u16 uiClassifierRuleIndex;
|
u16 uiClassifierRuleIndex;
|
||||||
BOOLEAN bUsed;
|
BOOLEAN bUsed;
|
||||||
USHORT usVCID_Value;
|
unsigned short usVCID_Value;
|
||||||
u8 u8ClassifierRulePriority;
|
u8 u8ClassifierRulePriority;
|
||||||
U_MIBS_IP_ADDRESS stSrcIpAddress;
|
U_MIBS_IP_ADDRESS stSrcIpAddress;
|
||||||
/* IP Source Address Length */
|
/* IP Source Address Length */
|
||||||
@ -83,11 +83,11 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
|
|||||||
unsigned char ucTosMask;
|
unsigned char ucTosMask;
|
||||||
unsigned char ucProtocolLength;
|
unsigned char ucProtocolLength;
|
||||||
unsigned char ucProtocol[MIBS_MAX_PROTOCOL_LENGTH];
|
unsigned char ucProtocol[MIBS_MAX_PROTOCOL_LENGTH];
|
||||||
USHORT usSrcPortRangeLo[MIBS_MAX_PORT_RANGE];
|
unsigned short usSrcPortRangeLo[MIBS_MAX_PORT_RANGE];
|
||||||
USHORT usSrcPortRangeHi[MIBS_MAX_PORT_RANGE];
|
unsigned short usSrcPortRangeHi[MIBS_MAX_PORT_RANGE];
|
||||||
unsigned char ucSrcPortRangeLength;
|
unsigned char ucSrcPortRangeLength;
|
||||||
USHORT usDestPortRangeLo[MIBS_MAX_PORT_RANGE];
|
unsigned short usDestPortRangeLo[MIBS_MAX_PORT_RANGE];
|
||||||
USHORT usDestPortRangeHi[MIBS_MAX_PORT_RANGE];
|
unsigned short usDestPortRangeHi[MIBS_MAX_PORT_RANGE];
|
||||||
unsigned char ucDestPortRangeLength;
|
unsigned char ucDestPortRangeLength;
|
||||||
BOOLEAN bProtocolValid;
|
BOOLEAN bProtocolValid;
|
||||||
BOOLEAN bTOSValid;
|
BOOLEAN bTOSValid;
|
||||||
@ -139,7 +139,7 @@ typedef struct _S_MIBS_EXTSERVICEFLOW_PARAMETERS {
|
|||||||
|
|
||||||
typedef struct _S_MIBS_SERVICEFLOW_TABLE {
|
typedef struct _S_MIBS_SERVICEFLOW_TABLE {
|
||||||
unsigned long ulSFID;
|
unsigned long ulSFID;
|
||||||
USHORT usVCID_Value;
|
unsigned short usVCID_Value;
|
||||||
unsigned int uiThreshold;
|
unsigned int uiThreshold;
|
||||||
u8 u8TrafficPriority;
|
u8 u8TrafficPriority;
|
||||||
BOOLEAN bValid;
|
BOOLEAN bValid;
|
||||||
@ -162,7 +162,7 @@ typedef struct _S_MIBS_SERVICEFLOW_TABLE {
|
|||||||
unsigned int uiMaxAllowedRate;
|
unsigned int uiMaxAllowedRate;
|
||||||
unsigned int NumOfPacketsSent;
|
unsigned int NumOfPacketsSent;
|
||||||
unsigned char ucDirection;
|
unsigned char ucDirection;
|
||||||
USHORT usCID;
|
unsigned short usCID;
|
||||||
S_MIBS_EXTSERVICEFLOW_PARAMETERS stMibsExtServiceFlowTable;
|
S_MIBS_EXTSERVICEFLOW_PARAMETERS stMibsExtServiceFlowTable;
|
||||||
unsigned int uiCurrentRxRate;
|
unsigned int uiCurrentRxRate;
|
||||||
unsigned int uiThisPeriodRxBytes;
|
unsigned int uiThisPeriodRxBytes;
|
||||||
|
Loading…
Reference in New Issue
Block a user