mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 13:27:25 -04:00
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:
committed by
Greg Kroah-Hartman
parent
d69438df32
commit
17d7fd271a
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user