* @bus:       Pointer to the current MII bus.
  * @regs:      Base address of EMAC memory-mapped control registers.
  * @napi:      Structure for NAPI.
- * @stats:     Network device statistics.
  * @rxbd:      Pointer to Rx BD ring.
  * @txbd:      Pointer to Tx BD ring.
  * @rxbd_dma:  DMA handle for Rx BD ring.
        struct clk *clk;
 
        struct napi_struct napi;
-       struct net_device_stats stats;
 
        struct arc_emac_bd *rxbd;
        struct arc_emac_bd *txbd;
 
 static void arc_emac_tx_clean(struct net_device *ndev)
 {
        struct arc_emac_priv *priv = netdev_priv(ndev);
-       struct net_device_stats *stats = &priv->stats;
+       struct net_device_stats *stats = &ndev->stats;
        unsigned int i;
 
        for (i = 0; i < TX_BD_NUM; i++) {
 
        for (work_done = 0; work_done < budget; work_done++) {
                unsigned int *last_rx_bd = &priv->last_rx_bd;
-               struct net_device_stats *stats = &priv->stats;
+               struct net_device_stats *stats = &ndev->stats;
                struct buffer_state *rx_buff = &priv->rx_buff[*last_rx_bd];
                struct arc_emac_bd *rxbd = &priv->rxbd[*last_rx_bd];
                unsigned int pktlen, info = le32_to_cpu(rxbd->info);
 {
        struct net_device *ndev = dev_instance;
        struct arc_emac_priv *priv = netdev_priv(ndev);
-       struct net_device_stats *stats = &priv->stats;
+       struct net_device_stats *stats = &ndev->stats;
        unsigned int status;
 
        status = arc_reg_get(priv, R_STATUS);
 static struct net_device_stats *arc_emac_stats(struct net_device *ndev)
 {
        struct arc_emac_priv *priv = netdev_priv(ndev);
-       struct net_device_stats *stats = &priv->stats;
+       struct net_device_stats *stats = &ndev->stats;
        unsigned long miss, rxerr;
        u8 rxcrc, rxfram, rxoflow;
 
 {
        struct arc_emac_priv *priv = netdev_priv(ndev);
        unsigned int len, *txbd_curr = &priv->txbd_curr;
-       struct net_device_stats *stats = &priv->stats;
+       struct net_device_stats *stats = &ndev->stats;
        __le32 *info = &priv->txbd[*txbd_curr].info;
        dma_addr_t addr;