summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-12-22 19:27:45 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-07 18:56:44 (GMT)
commitedb9ebb098e1f60ba1575ba171189ca38c039805 (patch)
tree1ac168c34fa11e9ca8db92b6e7492678576b0033
parent963fa3e62969e59c66875091710b5ea4ac68b065 (diff)
downloadlinux-fsl-qoriq-edb9ebb098e1f60ba1575ba171189ca38c039805.tar.xz
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>
-rw-r--r--drivers/staging/bcm/Protocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/bcm/Protocol.h b/drivers/staging/bcm/Protocol.h
index 040689b..7070ce6 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;