Skip to content

Commit

Permalink
Staging: bcm: Replace LARGE_INTEGER with u64 in HostMIBSInterface.h
Browse files Browse the repository at this point in the history
This patch replaces "LARGE_INTEGER" with "u64"
in HostMIBSInterface.h

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Nov 27, 2012
1 parent 86d82c9 commit 2a4d3a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/bcm/HostMIBSInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ typedef struct _S_MIBS_SERVICEFLOW_TABLE {
unsigned int uiSentPackets;
unsigned int uiCurrentDrainRate;
unsigned int uiThisPeriodSentBytes;
LARGE_INTEGER liDrainCalculated;
u64 liDrainCalculated;
unsigned int uiCurrentTokenCount;
LARGE_INTEGER liLastUpdateTokenAt;
u64 liLastUpdateTokenAt;
unsigned int uiMaxAllowedRate;
unsigned int NumOfPacketsSent;
unsigned char ucDirection;
Expand Down

0 comments on commit 2a4d3a2

Please sign in to comment.