Staging: bcm: Replace ULONG with unsigned long in Protocol.h

This patch replaces "ULONG" with "unsigned long"
in Protocol.h

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kevin McKinney 2012-12-22 14:27:45 -05:00 committed by Greg Kroah-Hartman
parent 963fa3e629
commit edb9ebb098

View File

@ -113,8 +113,8 @@ typedef enum _E_SERVICEFLOW_CS_SPEC_ {
typedef struct _TCP_HEADER {
unsigned short usSrcPort;
unsigned short usDestPort;
ULONG ulSeqNumber;
ULONG ulAckNumber;
unsigned long ulSeqNumber;
unsigned long ulAckNumber;
UCHAR HeaderLength;
UCHAR ucFlags;
unsigned short usWindowsSize;