Staging: bcm: Remove typedef for IPV6AuthenticationHeaderFormatTag and call directly.
authorKevin McKinney <klmckinney1@gmail.com>
Tue, 11 Dec 2012 02:55:05 +0000 (21:55 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Jan 2013 18:49:02 +0000 (10:49 -0800)
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: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/IPv6Protocol.c
drivers/staging/bcm/IPv6ProtocolHdr.h

index 4745ddd62f5b335425bb3dc56984b7a87d5b0f71..f3ab390518cf861c9ef33663c913e8879af6b649 100644 (file)
@@ -76,7 +76,7 @@ static UCHAR *GetNextIPV6ChainedHeader(UCHAR **ppucPayload,
                break;
        case IPV6HDR_TYPE_AUTHENTICATION:
                {
-                       IPV6AuthenticationHeader *pstIpv6AuthHdr = (IPV6AuthenticationHeader *)pucPayloadPtr;
+                       struct bcm_ipv6_authentication_hdr *pstIpv6AuthHdr = (struct bcm_ipv6_authentication_hdr *)pucPayloadPtr;
                        int nHdrLen = pstIpv6AuthHdr->ucLength;
                        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_TX, IPV6_DBG,
                                        DBG_LVL_ALL,
index 4ab3a6d37bb62323757f1dc4709ab4b561b95b89..1c49119cc477c7f0516850f5d260cc65ae9618a8 100644 (file)
@@ -58,12 +58,12 @@ typedef struct IPV6HopByHopOptionsHeaderFormatTag {
        unsigned long ulJumboPayloadLen;
 } IPV6HopByHopOptionsHeader;
 
-typedef struct IPV6AuthenticationHeaderFormatTag {
+struct bcm_ipv6_authentication_hdr {
        unsigned char  ucNextHeader;
        unsigned char  ucLength;
        unsigned short usReserved;
        unsigned long  ulSecurityParametersIndex;
-} IPV6AuthenticationHeader;
+};
 
 enum bcm_ipaddr_context {
        eSrcIpAddress,
This page took 0.02741 seconds and 5 git commands to generate.