Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edb9ebb0 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman
Browse files

Staging: bcm: Replace ULONG with unsigned long in Protocol.h



This patch replaces "ULONG" with "unsigned long"
in Protocol.h

Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 963fa3e6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;