Skip to content

Commit

Permalink
Staging: bcm: Replace ULONG64 with u64 in HostMIBSInterface.h
Browse files Browse the repository at this point in the history
This patch replaces "ULONG64" 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 57353c0 commit 27aaa42
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 @@ -44,8 +44,8 @@ typedef union _U_MIBS_IP_ADDRESS {
} U_MIBS_IP_ADDRESS;

typedef struct _S_MIBS_HOST_INFO {
ULONG64 GoodTransmits;
ULONG64 GoodReceives;
u64 GoodTransmits;
u64 GoodReceives;
/* this to keep track of the Tx and Rx MailBox Registers. */
ULONG NumDesUsed;
ULONG CurrNumFreeDesc;
Expand Down

0 comments on commit 27aaa42

Please sign in to comment.