Commit 36e0ae29 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Replace UINT with unsigned int in HostMIBSInterface.h

This patch replaces "UINT" with "unsigned int"
in HostMIBSInterface.h
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8830fd0a
...@@ -140,34 +140,34 @@ typedef struct _S_MIBS_EXTSERVICEFLOW_PARAMETERS { ...@@ -140,34 +140,34 @@ 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; USHORT usVCID_Value;
UINT uiThreshold; unsigned int uiThreshold;
u8 u8TrafficPriority; u8 u8TrafficPriority;
BOOLEAN bValid; BOOLEAN bValid;
BOOLEAN bActive; BOOLEAN bActive;
BOOLEAN bActivateRequestSent; BOOLEAN bActivateRequestSent;
u8 u8QueueType; u8 u8QueueType;
UINT uiMaxBucketSize; unsigned int uiMaxBucketSize;
UINT uiCurrentQueueDepthOnTarget; unsigned int uiCurrentQueueDepthOnTarget;
UINT uiCurrentBytesOnHost; unsigned int uiCurrentBytesOnHost;
UINT uiCurrentPacketsOnHost; unsigned int uiCurrentPacketsOnHost;
UINT uiDroppedCountBytes; unsigned int uiDroppedCountBytes;
UINT uiDroppedCountPackets; unsigned int uiDroppedCountPackets;
UINT uiSentBytes; unsigned int uiSentBytes;
UINT uiSentPackets; unsigned int uiSentPackets;
UINT uiCurrentDrainRate; unsigned int uiCurrentDrainRate;
UINT uiThisPeriodSentBytes; unsigned int uiThisPeriodSentBytes;
LARGE_INTEGER liDrainCalculated; LARGE_INTEGER liDrainCalculated;
UINT uiCurrentTokenCount; unsigned int uiCurrentTokenCount;
LARGE_INTEGER liLastUpdateTokenAt; LARGE_INTEGER liLastUpdateTokenAt;
UINT uiMaxAllowedRate; unsigned int uiMaxAllowedRate;
UINT NumOfPacketsSent; unsigned int NumOfPacketsSent;
unsigned char ucDirection; unsigned char ucDirection;
USHORT usCID; USHORT usCID;
S_MIBS_EXTSERVICEFLOW_PARAMETERS stMibsExtServiceFlowTable; S_MIBS_EXTSERVICEFLOW_PARAMETERS stMibsExtServiceFlowTable;
UINT uiCurrentRxRate; unsigned int uiCurrentRxRate;
UINT uiThisPeriodRxBytes; unsigned int uiThisPeriodRxBytes;
UINT uiTotalRxBytes; unsigned int uiTotalRxBytes;
UINT uiTotalTxBytes; unsigned int uiTotalTxBytes;
} S_MIBS_SERVICEFLOW_TABLE; } S_MIBS_SERVICEFLOW_TABLE;
typedef struct _S_MIBS_DROPPED_APP_CNTRL_MESSAGES { typedef struct _S_MIBS_DROPPED_APP_CNTRL_MESSAGES {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment