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

This patch removes typedef IPV6HopByHopOptionsHeaderFormatTag,
and changes the name of the struct to bcm_ipv6_options_hdr.
In addition, any calls to typedef IPV6HopByHopOptionsHeader
are changed to call the struct directly.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kevin McKinney 2012-12-10 21:55:06 -05:00 committed by Greg Kroah-Hartman
parent 5601bb9da5
commit bc25b75153
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ static UCHAR *GetNextIPV6ChainedHeader(UCHAR **ppucPayload,
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_TX, IPV6_DBG, BCM_DEBUG_PRINT(Adapter, DBG_TYPE_TX, IPV6_DBG,
DBG_LVL_ALL, "\nIPv6 HopByHop Header"); DBG_LVL_ALL, "\nIPv6 HopByHop Header");
usNextHeaderOffset += sizeof(IPV6HopByHopOptionsHeader); usNextHeaderOffset += sizeof(struct bcm_ipv6_options_hdr);
} }
break; break;

View File

@ -52,11 +52,11 @@ typedef struct IPV6DestOptionsHeaderFormatTag {
unsigned char ucDestOptions[6]; unsigned char ucDestOptions[6];
} IPV6DestOptionsHeader; } IPV6DestOptionsHeader;
typedef struct IPV6HopByHopOptionsHeaderFormatTag { struct bcm_ipv6_options_hdr {
unsigned char ucNextHeader; unsigned char ucNextHeader;
unsigned char ucMisc[3]; unsigned char ucMisc[3];
unsigned long ulJumboPayloadLen; unsigned long ulJumboPayloadLen;
} IPV6HopByHopOptionsHeader; };
struct bcm_ipv6_authentication_hdr { struct bcm_ipv6_authentication_hdr {
unsigned char ucNextHeader; unsigned char ucNextHeader;