UCHAR ucIpv6Mask[MAX_IP_RANGE_LENGTH * IPV6_ADDRESS_SIZEINBYTES];
        };
 } U_IP_ADDRESS;
-struct _packet_info;
 
 typedef struct _S_HDR_SUPRESSION_CONTEXTINFO {
        UCHAR ucaHdrSupressionInBuf[MAX_PHS_LENGTHS]; /* Intermediate buffer to accumulate pkt Header for PHS */
        BOOLEAN                 bOutOfOrderFragment;
 } S_FRAGMENTED_PACKET_INFO, *PS_FRAGMENTED_PACKET_INFO;
 
-struct _packet_info {
+struct bcm_packet_info {
        /* classification extension Rule */
        ULONG           ulSFID;
        USHORT          usVCID_Value;
        UCHAR           bIPCSSupport;
        UCHAR           bEthCSSupport;
 };
-typedef struct _packet_info PacketInfo;
 
 struct bcm_tarang_data {
        struct bcm_tarang_data  *next;
        USHORT                  PrevNumRecvDescs;
        USHORT                  CurrNumRecvDescs;
        UINT                    u32TotalDSD;
-       PacketInfo              PackInfo[NO_OF_QUEUES];
+       struct bcm_packet_info  PackInfo[NO_OF_QUEUES];
        S_CLASSIFIER_RULE       astClassifierTable[MAX_CLASSIFIERS];
        BOOLEAN                 TransferMode;
 
 
                break;
 
        case IOCTL_GET_PACK_INFO:
-               if (copy_to_user(argp, &Adapter->PackInfo, sizeof(PacketInfo)*NO_OF_QUEUES))
+               if (copy_to_user(argp, &Adapter->PackInfo, sizeof(struct bcm_packet_info)*NO_OF_QUEUES))
                        return -EFAULT;
                Status = STATUS_SUCCESS;
                break;
 
 int get_dsx_sf_data_to_application(PMINI_ADAPTER Adapter, UINT uiSFId, void __user *user_buffer)
 {
        int status = 0;
-       struct _packet_info *psSfInfo = NULL;
+       struct bcm_packet_info *psSfInfo = NULL;
 
        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, CONN_MSG, DBG_LVL_ALL, "status =%d", status);
        status = SearchSfid(Adapter, uiSFId);
 
 * Returns     - The number of bytes allowed for transmission.
 *
 ***********************************************************************/
-static ULONG GetSFTokenCount(PMINI_ADAPTER Adapter, PacketInfo *psSF)
+static ULONG GetSFTokenCount(PMINI_ADAPTER Adapter, struct bcm_packet_info *psSF)
 {
        BCM_DEBUG_PRINT(Adapter,DBG_TYPE_TX, TOKEN_COUNTS, DBG_LVL_ALL, "IsPacketAllowedForFlow ===>");
        /* Validate the parameters */
 @return Zero(success) or Negative value(failure)
 */
 static INT SendPacketFromQueue(PMINI_ADAPTER Adapter,/**<Logical Adapter*/
-                              PacketInfo *psSF,                /**<Queue identifier*/
+                       struct bcm_packet_info *psSF, /**<Queue identifier*/
                               struct sk_buff*  Packet) /**<Pointer to the packet to be sent*/
 {
        INT     Status=STATUS_FAILURE;
 * Returns     - None.
 *
 ****************************************************************************/
-static VOID CheckAndSendPacketFromIndex(PMINI_ADAPTER Adapter, PacketInfo *psSF)
+static VOID CheckAndSendPacketFromIndex(PMINI_ADAPTER Adapter, struct bcm_packet_info *psSF)
 {
        struct sk_buff  *QueuePacket=NULL;
        char                    *pControlPacket = NULL;
 
 
 static int compare_packet_info(void const *a, void const *b)
 {
-       PacketInfo const *pa = a;
-       PacketInfo const *pb = b;
+       struct bcm_packet_info const *pa = a;
+       struct bcm_packet_info const *pb = b;
 
        if (!pa->bValid || !pb->bValid)
                return 0;
        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, CONN_MSG,
                        DBG_LVL_ALL, "<=======");
 
-       sort(Adapter->PackInfo, NO_OF_QUEUES, sizeof(PacketInfo),
+       sort(Adapter->PackInfo, NO_OF_QUEUES, sizeof(struct bcm_packet_info),
                compare_packet_info, NULL);
 }