Staging: bcm: Replace BOOLEAN with bool in HostMIBSInterface.h

This patch replaces "BOOLEAN" with "bool"
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:
Kevin McKinney 2012-11-25 19:28:54 -05:00 committed by Greg Kroah-Hartman
parent 7d5691e5ce
commit 86d82c90b3

View File

@ -57,8 +57,8 @@ typedef struct _S_MIBS_HOST_INFO {
unsigned long BEBucketSize; unsigned long BEBucketSize;
unsigned long rtPSBucketSize; unsigned long rtPSBucketSize;
unsigned long LastTxQueueIndex; unsigned long LastTxQueueIndex;
BOOLEAN TxOutofDescriptors; bool TxOutofDescriptors;
BOOLEAN TimerActive; bool TimerActive;
u32 u32TotalDSD; u32 u32TotalDSD;
u32 aTxPktSizeHist[MIBS_MAX_HIST_ENTRIES]; u32 aTxPktSizeHist[MIBS_MAX_HIST_ENTRIES];
u32 aRxPktSizeHist[MIBS_MAX_HIST_ENTRIES]; u32 aRxPktSizeHist[MIBS_MAX_HIST_ENTRIES];
@ -68,7 +68,7 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
unsigned long ulSFID; unsigned long ulSFID;
unsigned char ucReserved[2]; unsigned char ucReserved[2];
u16 uiClassifierRuleIndex; u16 uiClassifierRuleIndex;
BOOLEAN bUsed; bool bUsed;
unsigned short usVCID_Value; unsigned short usVCID_Value;
u8 u8ClassifierRulePriority; u8 u8ClassifierRulePriority;
U_MIBS_IP_ADDRESS stSrcIpAddress; U_MIBS_IP_ADDRESS stSrcIpAddress;
@ -89,12 +89,12 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
unsigned short usDestPortRangeLo[MIBS_MAX_PORT_RANGE]; unsigned short usDestPortRangeLo[MIBS_MAX_PORT_RANGE];
unsigned short usDestPortRangeHi[MIBS_MAX_PORT_RANGE]; unsigned short usDestPortRangeHi[MIBS_MAX_PORT_RANGE];
unsigned char ucDestPortRangeLength; unsigned char ucDestPortRangeLength;
BOOLEAN bProtocolValid; bool bProtocolValid;
BOOLEAN bTOSValid; bool bTOSValid;
BOOLEAN bDestIpValid; bool bDestIpValid;
BOOLEAN bSrcIpValid; bool bSrcIpValid;
unsigned char ucDirection; unsigned char ucDirection;
BOOLEAN bIpv6Protocol; bool bIpv6Protocol;
u32 u32PHSRuleID; u32 u32PHSRuleID;
} S_MIBS_CLASSIFIER_RULE; } S_MIBS_CLASSIFIER_RULE;
@ -142,9 +142,9 @@ typedef struct _S_MIBS_SERVICEFLOW_TABLE {
unsigned short usVCID_Value; unsigned short usVCID_Value;
unsigned int uiThreshold; unsigned int uiThreshold;
u8 u8TrafficPriority; u8 u8TrafficPriority;
BOOLEAN bValid; bool bValid;
BOOLEAN bActive; bool bActive;
BOOLEAN bActivateRequestSent; bool bActivateRequestSent;
u8 u8QueueType; u8 u8QueueType;
unsigned int uiMaxBucketSize; unsigned int uiMaxBucketSize;
unsigned int uiCurrentQueueDepthOnTarget; unsigned int uiCurrentQueueDepthOnTarget;