summaryrefslogtreecommitdiff
path: root/drivers/staging/bcm
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-11-26 00:28:54 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-27 00:07:57 (GMT)
commit86d82c90b34c52d7cde36c6d98854bd3ac0c975d (patch)
tree5356f221de0dddd93b0e3ac9bd37ec64f5f880c7 /drivers/staging/bcm
parent7d5691e5ce814b43c08d5d5701c73346de4d1356 (diff)
downloadlinux-fsl-qoriq-86d82c90b34c52d7cde36c6d98854bd3ac0c975d.tar.xz
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>
Diffstat (limited to 'drivers/staging/bcm')
-rw-r--r--drivers/staging/bcm/HostMIBSInterface.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/staging/bcm/HostMIBSInterface.h b/drivers/staging/bcm/HostMIBSInterface.h
index 7d09b3e9..d7f581c 100644
--- a/drivers/staging/bcm/HostMIBSInterface.h
+++ b/drivers/staging/bcm/HostMIBSInterface.h
@@ -57,8 +57,8 @@ typedef struct _S_MIBS_HOST_INFO {
unsigned long BEBucketSize;
unsigned long rtPSBucketSize;
unsigned long LastTxQueueIndex;
- BOOLEAN TxOutofDescriptors;
- BOOLEAN TimerActive;
+ bool TxOutofDescriptors;
+ bool TimerActive;
u32 u32TotalDSD;
u32 aTxPktSizeHist[MIBS_MAX_HIST_ENTRIES];
u32 aRxPktSizeHist[MIBS_MAX_HIST_ENTRIES];
@@ -68,7 +68,7 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
unsigned long ulSFID;
unsigned char ucReserved[2];
u16 uiClassifierRuleIndex;
- BOOLEAN bUsed;
+ bool bUsed;
unsigned short usVCID_Value;
u8 u8ClassifierRulePriority;
U_MIBS_IP_ADDRESS stSrcIpAddress;
@@ -89,12 +89,12 @@ typedef struct _S_MIBS_CLASSIFIER_RULE {
unsigned short usDestPortRangeLo[MIBS_MAX_PORT_RANGE];
unsigned short usDestPortRangeHi[MIBS_MAX_PORT_RANGE];
unsigned char ucDestPortRangeLength;
- BOOLEAN bProtocolValid;
- BOOLEAN bTOSValid;
- BOOLEAN bDestIpValid;
- BOOLEAN bSrcIpValid;
+ bool bProtocolValid;
+ bool bTOSValid;
+ bool bDestIpValid;
+ bool bSrcIpValid;
unsigned char ucDirection;
- BOOLEAN bIpv6Protocol;
+ bool bIpv6Protocol;
u32 u32PHSRuleID;
} S_MIBS_CLASSIFIER_RULE;
@@ -142,9 +142,9 @@ typedef struct _S_MIBS_SERVICEFLOW_TABLE {
unsigned short usVCID_Value;
unsigned int uiThreshold;
u8 u8TrafficPriority;
- BOOLEAN bValid;
- BOOLEAN bActive;
- BOOLEAN bActivateRequestSent;
+ bool bValid;
+ bool bActive;
+ bool bActivateRequestSent;
u8 u8QueueType;
unsigned int uiMaxBucketSize;
unsigned int uiCurrentQueueDepthOnTarget;