]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: bcm: Replace UINT with unsigned int in HostMIBSInterface.h
authorKevin McKinney <klmckinney1@gmail.com>
Mon, 26 Nov 2012 00:28:52 +0000 (19:28 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Nov 2012 00:07:57 +0000 (16:07 -0800)
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>
drivers/staging/bcm/HostMIBSInterface.h

index 5a348f1b602c197fac80552fbd6868a6b31c3830..27762fd88bf023c829c30e38254edda3cd69f21e 100644 (file)
@@ -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 {