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>
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 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;