From: Kevin McKinney Date: Sat, 22 Dec 2012 19:27:45 +0000 (-0500) Subject: Staging: bcm: Replace ULONG with unsigned long in Protocol.h X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=edb9ebb098e1f60ba1575ba171189ca38c039805;p=deliverable%2Flinux.git 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 Signed-off-by: Greg Kroah-Hartman --- 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;