return NULL;
        }
 
-       //Get the Nextt Header Type
+       /* Get the Nextt Header Type */
        *bParseDone = FALSE;
 
 
 }
 
 
-
-USHORT IpVersion6(PMINI_ADAPTER Adapter, /**< Pointer to the driver control structure */
-                                       PVOID pcIpHeader, /**<Pointer to the IP Hdr of the packet*/
+/*
+ * Arg 1 PMINI_ADAPTER Adapter is a pointer ot the driver contorl structure
+ * Arg 2 PVOID pcIpHeader is a pointer to the IP header of the packet
+ */
+USHORT IpVersion6(PMINI_ADAPTER Adapter, PVOID pcIpHeader,
                                        S_CLASSIFIER_RULE *pstClassifierRule )
 {
        USHORT  ushDestPort = 0;
 
        DumpIpv6Header(pstIpv6Header);
 
-       //Try to get the next higher layer protocol and the Ports Nos if TCP or UDP
+       /* 
+        * Try to get the next higher layer protocol 
+        * and the Ports Nos if TCP or UDP
+        */
        ucNextProtocolAboveIP = GetIpv6ProtocolPorts((UCHAR *)(pcIpHeader + sizeof(IPV6Header)),
                                                        &ushSrcPort,
                                                        &ushDestPort,
 
        do {
                if (0 == pstClassifierRule->ucDirection) {
-                       //cannot be processed for classification.
-                  // it is a down link connection
+                       /* 
+                        * cannot be processed for classification.
+                        * it is a down link connection
+                        */
                        break;
                }
 
                if (!pstClassifierRule->bIpv6Protocol) {
-                       //We are looking for Ipv6 Classifiers . Lets ignore this classifier and try the next one.
+                       /*
+                        * We are looking for Ipv6 Classifiers 
+                        * Lets ignore this classifier and try the next one
+                        */
                        break;
                }
 
                if (!bClassificationSucceed)
                    break;
 
-               //Match the protocol type.For IPv6 the next protocol at end of Chain of IPv6 prot headers
+               /* 
+                * Match the protocol type.
+                * For IPv6 the next protocol at end of 
+                * Chain of IPv6 prot headers
+                */
                bClassificationSucceed=MatchProtocol(pstClassifierRule,ucNextProtocolAboveIP);
                if (!bClassificationSucceed)
                    break;
                BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "\nIPv6 Protocol Matched");
 
                if ((ucNextProtocolAboveIP == TCP_HEADER_TYPE) || (ucNextProtocolAboveIP == UDP_HEADER_TYPE)) {
-                       //Match Src Port
+                       /* Match Src Port */
                        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "\nIPv6 Source Port:%x\n",ntohs(ushSrcPort));
                        bClassificationSucceed=MatchSrcPort(pstClassifierRule,ntohs(ushSrcPort));
                        if (!bClassificationSucceed)
 
                        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "\nIPv6 Src Port Matched");
 
-                       //Match Dest Port
+                       /* Match Dest Port */
                        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "\nIPv6 Destination Port:%x\n",ntohs(ushDestPort));
                        bClassificationSucceed=MatchDestPort(pstClassifierRule,ntohs(ushDestPort));
                        if (!bClassificationSucceed)
        ULONG aulSrcIP[4];
        PMINI_ADAPTER Adapter = GET_BCM_ADAPTER(gblpnetdev);
        /*
-       //This is the no. of Src Addresses ie Range of IP Addresses contained
-       //in the classifier rule for which we need to match
-       */
+        * This is the no. of Src Addresses ie Range of IP Addresses contained
+        * in the classifier rule for which we need to match
+        */
        UINT  uiCountIPSrcAddresses = (UINT)pstClassifierRule->ucIPSourceAddressLength;
 
 
                return TRUE;
 
 
-       //First Convert the Ip Address in the packet to Host Endian order
+       /* First Convert the Ip Address in the packet to Host Endian order */
        for (uiIpv6AddIndex = 0; uiIpv6AddIndex<uiIpv6AddrNoLongWords; uiIpv6AddIndex++) {
                aulSrcIP[uiIpv6AddIndex]=ntohl(pstIpv6Header->ulSrcIpAddress[uiIpv6AddIndex]);
        }
                for (uiIpv6AddIndex = 0; uiIpv6AddIndex < uiIpv6AddrNoLongWords; uiIpv6AddIndex++) {
                        if ((pstClassifierRule->stSrcIpAddress.ulIpv6Mask[uiLoopIndex+uiIpv6AddIndex] & aulSrcIP[uiIpv6AddIndex])
                                != pstClassifierRule->stSrcIpAddress.ulIpv6Addr[uiLoopIndex+uiIpv6AddIndex]) {
-                               //Match failed for current Ipv6 Address.Try next Ipv6 Address
+                               /* 
+                                * Match failed for current Ipv6 Address
+                                * Try next Ipv6 Address
+                                */
                                break;
                        }
 
                        if (uiIpv6AddIndex ==  uiIpv6AddrNoLongWords-1) {
-                               //Match Found
+                               /* Match Found */
                                BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Ipv6 Src Ip Address Matched\n");
                                return TRUE;
                        }
        UINT uiIpv6AddrNoLongWords = 4;
        ULONG aulDestIP[4];
        PMINI_ADAPTER Adapter = GET_BCM_ADAPTER(gblpnetdev);
-       /*
-       //This is the no. of Destination Addresses ie Range of IP Addresses contained
-       //in the classifier rule for which we need to match
-       */
+       /* 
+        * This is the no. of Destination Addresses 
+        * ie Range of IP Addresses contained in the classifier rule 
+        * for which we need to match
+        */
        UINT  uiCountIPDestinationAddresses = (UINT)pstClassifierRule->ucIPDestinationAddressLength;
 
 
                return TRUE;
 
 
-       //First Convert the Ip Address in the packet to Host Endian order
+       /* First Convert the Ip Address in the packet to Host Endian order */
        for (uiIpv6AddIndex = 0;uiIpv6AddIndex < uiIpv6AddrNoLongWords; uiIpv6AddIndex++) {
                aulDestIP[uiIpv6AddIndex]=ntohl(pstIpv6Header->ulDestIpAddress[uiIpv6AddIndex]);
        }
                for (uiIpv6AddIndex = 0; uiIpv6AddIndex < uiIpv6AddrNoLongWords; uiIpv6AddIndex++) {
                        if ((pstClassifierRule->stDestIpAddress.ulIpv6Mask[uiLoopIndex+uiIpv6AddIndex] & aulDestIP[uiIpv6AddIndex])
                                != pstClassifierRule->stDestIpAddress.ulIpv6Addr[uiLoopIndex+uiIpv6AddIndex]) {
-                               //Match failed for current Ipv6 Address.Try next Ipv6 Address
+                               /* 
+                                * Match failed for current Ipv6 Address.
+                                * Try next Ipv6 Address
+                                */
                                break;
                        }
 
                        if (uiIpv6AddIndex ==  uiIpv6AddrNoLongWords-1) {
-                               //Match Found
+                               /* Match Found */
                                BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Ipv6 Destination Ip Address Matched\n");
                                return TRUE;
                        }
        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Version : %x \n",ucVersion);
        ucPrio = pstIpv6Header->ucVersionPrio & 0x0f;
        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Priority : %x \n",ucPrio);
-       //BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Flow Label : %x \n",(pstIpv6Header->ucVersionPrio &0xf0);
+       /* 
+        * BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, 
+        * "Flow Label : %x \n",(pstIpv6Header->ucVersionPrio &0xf0);
+        */
        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Payload Length : %x \n",ntohs(pstIpv6Header->usPayloadLength));
        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Next Header : %x \n",pstIpv6Header->ucNextHeader);
        BCM_DEBUG_PRINT( Adapter,DBG_TYPE_TX, IPV6_DBG, DBG_LVL_ALL, "Hop Limit : %x \n",pstIpv6Header->ucHopLimit);