Commit 5601bb9d authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Remove typedef for IPV6AuthenticationHeaderFormatTag and call directly.

This patch removes typedef for IPV6AuthenticationHeaderFormatTag,
and changes the name of the struct to bcm_ipv6_authentication_hdr
In addition, any calls to typedef IPV6AuthenticationHeader, are
changed to call the struct directly.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ceebf54d
...@@ -76,7 +76,7 @@ static UCHAR *GetNextIPV6ChainedHeader(UCHAR **ppucPayload, ...@@ -76,7 +76,7 @@ static UCHAR *GetNextIPV6ChainedHeader(UCHAR **ppucPayload,
break; break;
case IPV6HDR_TYPE_AUTHENTICATION: case IPV6HDR_TYPE_AUTHENTICATION:
{ {
IPV6AuthenticationHeader *pstIpv6AuthHdr = (IPV6AuthenticationHeader *)pucPayloadPtr; struct bcm_ipv6_authentication_hdr *pstIpv6AuthHdr = (struct bcm_ipv6_authentication_hdr *)pucPayloadPtr;
int nHdrLen = pstIpv6AuthHdr->ucLength; int nHdrLen = pstIpv6AuthHdr->ucLength;
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_TX, IPV6_DBG, BCM_DEBUG_PRINT(Adapter, DBG_TYPE_TX, IPV6_DBG,
DBG_LVL_ALL, DBG_LVL_ALL,
......
...@@ -58,12 +58,12 @@ typedef struct IPV6HopByHopOptionsHeaderFormatTag { ...@@ -58,12 +58,12 @@ typedef struct IPV6HopByHopOptionsHeaderFormatTag {
unsigned long ulJumboPayloadLen; unsigned long ulJumboPayloadLen;
} IPV6HopByHopOptionsHeader; } IPV6HopByHopOptionsHeader;
typedef struct IPV6AuthenticationHeaderFormatTag { struct bcm_ipv6_authentication_hdr {
unsigned char ucNextHeader; unsigned char ucNextHeader;
unsigned char ucLength; unsigned char ucLength;
unsigned short usReserved; unsigned short usReserved;
unsigned long ulSecurityParametersIndex; unsigned long ulSecurityParametersIndex;
} IPV6AuthenticationHeader; };
enum bcm_ipaddr_context { enum bcm_ipaddr_context {
eSrcIpAddress, eSrcIpAddress,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment