From cdfe44deb8bd617ba7ba6e2e3408f15efd64f87c Mon Sep 17 00:00:00 2001 From: skrll Date: Mon, 25 Jul 2022 08:19:50 +0000 Subject: G/C the unused bge_rx_mini_chain member from bge_chain_data. It was removed from the FreeBSD driver in 2003. --- sys/dev/pci/if_bgevar.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/pci/if_bgevar.h b/sys/dev/pci/if_bgevar.h index 45b191933c7..c86dda0aa41 100644 --- a/sys/dev/pci/if_bgevar.h +++ b/sys/dev/pci/if_bgevar.h @@ -1,4 +1,4 @@ -/* $NetBSD: if_bgevar.h,v 1.28 2022/07/02 07:22:41 skrll Exp $ */ +/* $NetBSD: if_bgevar.h,v 1.29 2022/07/25 08:19:50 skrll Exp $ */ /* * Copyright (c) 2001 Wind River Systems * Copyright (c) 1997, 1998, 1999, 2001 @@ -216,7 +216,6 @@ struct bge_chain_data { struct mbuf *bge_tx_chain[BGE_TX_RING_CNT]; struct mbuf *bge_rx_std_chain[BGE_STD_RX_RING_CNT]; struct mbuf *bge_rx_jumbo_chain[BGE_JUMBO_RX_RING_CNT]; - struct mbuf *bge_rx_mini_chain[BGE_MINI_RX_RING_CNT]; bus_dmamap_t bge_rx_std_map[BGE_STD_RX_RING_CNT]; bus_dmamap_t bge_rx_jumbo_map; /* Stick the jumbo mem management stuff here too. */ -- cgit