diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-11-25 19:28:52 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-26 16:07:57 -0800 |
commit | 36e0ae29141df4f531bbf5de103443da9c64bca6 (patch) | |
tree | d6824a1bf999ab3b97c41ea4dee63126ea9c7248 /drivers/staging | |
parent | 8830fd0a169ab569ec2ac79106d430b10ee45353 (diff) | |
download | linux-36e0ae29141df4f531bbf5de103443da9c64bca6.tar.bz2 |
Staging: bcm: Replace UINT with unsigned int in HostMIBSInterface.h
This patch replaces "UINT" with "unsigned int"
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')
-rw-r--r-- | drivers/staging/bcm/HostMIBSInterface.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/drivers/staging/bcm/HostMIBSInterface.h b/drivers/staging/bcm/HostMIBSInterface.h index 5a348f1b602c..27762fd88bf0 100644 --- a/drivers/staging/bcm/HostMIBSInterface.h +++ b/drivers/staging/bcm/HostMIBSInterface.h @@ -140,34 +140,34 @@ typedef struct _S_MIBS_EXTSERVICEFLOW_PARAMETERS { typedef struct _S_MIBS_SERVICEFLOW_TABLE { unsigned long ulSFID; USHORT usVCID_Value; - UINT uiThreshold; + unsigned int uiThreshold; u8 u8TrafficPriority; BOOLEAN bValid; BOOLEAN bActive; BOOLEAN bActivateRequestSent; u8 u8QueueType; - UINT uiMaxBucketSize; - UINT uiCurrentQueueDepthOnTarget; - UINT uiCurrentBytesOnHost; - UINT uiCurrentPacketsOnHost; - UINT uiDroppedCountBytes; - UINT uiDroppedCountPackets; - UINT uiSentBytes; - UINT uiSentPackets; - UINT uiCurrentDrainRate; - UINT uiThisPeriodSentBytes; + unsigned int uiMaxBucketSize; + unsigned int uiCurrentQueueDepthOnTarget; + unsigned int uiCurrentBytesOnHost; + unsigned int uiCurrentPacketsOnHost; + unsigned int uiDroppedCountBytes; + unsigned int uiDroppedCountPackets; + unsigned int uiSentBytes; + unsigned int uiSentPackets; + unsigned int uiCurrentDrainRate; + unsigned int uiThisPeriodSentBytes; LARGE_INTEGER liDrainCalculated; - UINT uiCurrentTokenCount; + unsigned int uiCurrentTokenCount; LARGE_INTEGER liLastUpdateTokenAt; - UINT uiMaxAllowedRate; - UINT NumOfPacketsSent; + unsigned int uiMaxAllowedRate; + unsigned int NumOfPacketsSent; unsigned char ucDirection; USHORT usCID; S_MIBS_EXTSERVICEFLOW_PARAMETERS stMibsExtServiceFlowTable; - UINT uiCurrentRxRate; - UINT uiThisPeriodRxBytes; - UINT uiTotalRxBytes; - UINT uiTotalTxBytes; + unsigned int uiCurrentRxRate; + unsigned int uiThisPeriodRxBytes; + unsigned int uiTotalRxBytes; + unsigned int uiTotalTxBytes; } S_MIBS_SERVICEFLOW_TABLE; typedef struct _S_MIBS_DROPPED_APP_CNTRL_MESSAGES { |