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

This patch removes typedef IPV6FragmentHeaderFormatTag,
and changes the name of the struct to bcm_ipv6_fragment_hdr.
In addition, any calls to typedef IPV6FragmentHeader
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:08 -05:00
committed by Greg Kroah-Hartman
parent d69438df32
commit 17d7fd271a
2 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ static UCHAR *GetNextIPV6ChainedHeader(UCHAR **ppucPayload,
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_TX, IPV6_DBG,
DBG_LVL_ALL,
"\nIPv6 Fragmentation Header");
usNextHeaderOffset += sizeof(IPV6FragmentHeader);
usNextHeaderOffset += sizeof(struct bcm_ipv6_fragment_hdr);
}
break;

View File

@@ -39,12 +39,12 @@ typedef struct IPV6RoutingHeaderFormatTag {
unsigned long ulReserved;
} IPV6RoutingHeader;
typedef struct IPV6FragmentHeaderFormatTag {
struct bcm_ipv6_fragment_hdr {
unsigned char ucNextHeader;
unsigned char ucReserved;
unsigned short usFragmentOffset;
unsigned long ulIdentification;
} IPV6FragmentHeader;
};
struct bcm_ipv6_dest_options_hdr {
unsigned char ucNextHeader;