Skip to content

Commit

Permalink
Staging: bcm: Remove typedef for IPV6FragmentHeaderFormatTag and call…
Browse files Browse the repository at this point in the history
… 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>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent d69438d commit 17d7fd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/bcm/IPv6Protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/bcm/IPv6ProtocolHdr.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 17d7fd2

Please sign in to comment.