diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-11-25 19:28:51 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-26 16:07:56 -0800 |
commit | 8830fd0a169ab569ec2ac79106d430b10ee45353 (patch) | |
tree | c3b0dc8ece2e09067fdc86d864b5d318d1f210a8 /drivers/staging/bcm | |
parent | 2fb99f8b0d68387d88fd22c47ab4865a93ce757e (diff) | |
download | linux-8830fd0a169ab569ec2ac79106d430b10ee45353.tar.gz linux-8830fd0a169ab569ec2ac79106d430b10ee45353.tar.bz2 linux-8830fd0a169ab569ec2ac79106d430b10ee45353.zip |
Staging: bcm: Replace B_UINT8 with u8 in HostMIBSInterface.h
This patch replaces "B_UINT8" with "u8" 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.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/staging/bcm/HostMIBSInterface.h b/drivers/staging/bcm/HostMIBSInterface.h index 1c8377a055e8..5a348f1b602c 100644 --- a/drivers/staging/bcm/HostMIBSInterface.h +++ b/drivers/staging/bcm/HostMIBSInterface.h @@ -70,7 +70,7 @@ typedef struct _S_MIBS_CLASSIFIER_RULE { u16 uiClassifierRuleIndex; BOOLEAN bUsed; USHORT usVCID_Value; - B_UINT8 u8ClassifierRulePriority; + u8 u8ClassifierRulePriority; U_MIBS_IP_ADDRESS stSrcIpAddress; /* IP Source Address Length */ unsigned char ucIPSourceAddressLength; @@ -100,14 +100,14 @@ typedef struct _S_MIBS_CLASSIFIER_RULE { typedef struct _S_MIBS_PHS_RULE { unsigned long ulSFID; - B_UINT8 u8PHSI; - B_UINT8 u8PHSFLength; - B_UINT8 u8PHSF[MIBS_MAX_PHS_LENGTHS]; - B_UINT8 u8PHSMLength; - B_UINT8 u8PHSM[MIBS_MAX_PHS_LENGTHS]; - B_UINT8 u8PHSS; - B_UINT8 u8PHSV; - B_UINT8 reserved[5]; + u8 u8PHSI; + u8 u8PHSFLength; + u8 u8PHSF[MIBS_MAX_PHS_LENGTHS]; + u8 u8PHSMLength; + u8 u8PHSM[MIBS_MAX_PHS_LENGTHS]; + u8 u8PHSS; + u8 u8PHSV; + u8 reserved[5]; long PHSModifiedBytes; unsigned long PHSModifiedNumPackets; unsigned long PHSErrorNumPackets; @@ -141,11 +141,11 @@ typedef struct _S_MIBS_SERVICEFLOW_TABLE { unsigned long ulSFID; USHORT usVCID_Value; UINT uiThreshold; - B_UINT8 u8TrafficPriority; + u8 u8TrafficPriority; BOOLEAN bValid; BOOLEAN bActive; BOOLEAN bActivateRequestSent; - B_UINT8 u8QueueType; + u8 u8QueueType; UINT uiMaxBucketSize; UINT uiCurrentQueueDepthOnTarget; UINT uiCurrentBytesOnHost; |