diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-12-22 14:27:45 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-07 10:56:44 -0800 |
commit | edb9ebb098e1f60ba1575ba171189ca38c039805 (patch) | |
tree | 1ac168c34fa11e9ca8db92b6e7492678576b0033 /drivers/staging | |
parent | 963fa3e62969e59c66875091710b5ea4ac68b065 (diff) |
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/bcm/Protocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/bcm/Protocol.h b/drivers/staging/bcm/Protocol.h index 040689bc203e..7070ce69157c 100644 --- a/drivers/staging/bcm/Protocol.h +++ b/drivers/staging/bcm/Protocol.h @@ -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; |