Staging: bcm: Replace ULONG with unsigned long in Protocol.h
authorKevin McKinney <klmckinney1@gmail.com>
Sat, 22 Dec 2012 19:27:45 +0000 (14:27 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Jan 2013 18:56:44 +0000 (10:56 -0800)
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>
drivers/staging/bcm/Protocol.h

index 040689b..7070ce6 100644 (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;