static const struct rtl819x_ops rtl819xp_ops = {
        .nic_type                       = NIC_8192E,
        .link_change                    = rtl92e_link_change,
-       .rx_query_status_descriptor     = rtl92e_get_rx_stats,
        .rx_command_packet_handler = NULL,
        .stop_adapter                   = rtl92e_stop_adapter,
        .update_ratr_table              = rtl92e_update_ratr_table,
 
                if (pdesc->OWN)
                        return;
-               if (!priv->ops->rx_query_status_descriptor(dev, &stats,
-               pdesc, skb))
+               if (!rtl92e_get_rx_stats(dev, &stats, pdesc, skb))
                        goto done;
                new_skb = dev_alloc_skb(priv->rxbuffersize);
                /* if allocation of new skb failed - drop current packet
 
        enum nic_t nic_type;
        void (*init_before_adapter_start)(struct net_device *dev);
        void (*link_change)(struct net_device *dev);
-       bool (*rx_query_status_descriptor)(struct net_device *dev,
-                                          struct rtllib_rx_stats *stats,
-                                          struct rx_desc *pdesc,
-                                          struct sk_buff *skb);
        bool (*rx_command_packet_handler)(struct net_device *dev,
                                          struct sk_buff *skb,
                                          struct rx_desc *pdesc);