From edb9ebb098e1f60ba1575ba171189ca38c039805 Mon Sep 17 00:00:00 2001 From: Kevin McKinney Date: Sat, 22 Dec 2012 14:27:45 -0500 Subject: [PATCH] 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 --- drivers/staging/bcm/Protocol.h | 4 ++-- 1 file 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; -- 2.7.4