Skip to content

Commit

Permalink
Staging: bcm: Replace ULONG with unsigned long in IPv6ProtocolHdr.h
Browse files Browse the repository at this point in the history
This patch replaces "ULONG" with "unsigned long" in
IPv6ProtocolHdr.h.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent 5ef43c3 commit 828c1dd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/staging/bcm/IPv6ProtocolHdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@ typedef struct IPV6HeaderFormatTag {
unsigned short usPayloadLength;
UCHAR ucNextHeader;
UCHAR ucHopLimit;
ULONG ulSrcIpAddress[4];
ULONG ulDestIpAddress[4];
unsigned long ulSrcIpAddress[4];
unsigned long ulDestIpAddress[4];
} IPV6Header;

typedef struct IPV6RoutingHeaderFormatTag {
UCHAR ucNextHeader;
UCHAR ucRoutingType;
UCHAR ucNumAddresses;
UCHAR ucNextAddress;
ULONG ulReserved;
unsigned long ulReserved;
} IPV6RoutingHeader;

typedef struct IPV6FragmentHeaderFormatTag {
UCHAR ucNextHeader;
UCHAR ucReserved;
unsigned short usFragmentOffset;
ULONG ulIdentification;
unsigned long ulIdentification;
} IPV6FragmentHeader;

typedef struct IPV6DestOptionsHeaderFormatTag {
Expand All @@ -55,14 +55,14 @@ typedef struct IPV6DestOptionsHeaderFormatTag {
typedef struct IPV6HopByHopOptionsHeaderFormatTag {
UCHAR ucNextHeader;
UCHAR ucMisc[3];
ULONG ulJumboPayloadLen;
unsigned long ulJumboPayloadLen;
} IPV6HopByHopOptionsHeader;

typedef struct IPV6AuthenticationHeaderFormatTag {
UCHAR ucNextHeader;
UCHAR ucLength;
unsigned short usReserved;
ULONG ulSecurityParametersIndex;
unsigned long ulSecurityParametersIndex;
} IPV6AuthenticationHeader;

typedef struct IPV6IcmpHeaderFormatTag {
Expand All @@ -82,7 +82,7 @@ unsigned short IpVersion6(struct bcm_mini_adapter *Adapter, /* < Pointer to the
PVOID pcIpHeader, /* <Pointer to the IP Hdr of the packet */
struct bcm_classifier_rule *pstClassifierRule);

VOID DumpIpv6Address(ULONG *puIpv6Address);
VOID DumpIpv6Address(unsigned long *puIpv6Address);

extern BOOLEAN MatchSrcPort(struct bcm_classifier_rule *pstClassifierRule, unsigned short ushSrcPort);
extern BOOLEAN MatchDestPort(struct bcm_classifier_rule *pstClassifierRule, unsigned short ushSrcPort);
Expand Down

0 comments on commit 828c1dd

Please sign in to comment.