1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * Copyright(c) 2023 Napatech A/S 4 */ 5 6 #ifndef __NTOS_SYSTEM_H__ 7 #define __NTOS_SYSTEM_H__ 8 9 #include "ntdrv_4ga.h" 10 11 struct drv_s { 12 int adapter_no; 13 struct rte_pci_device *p_dev; 14 struct ntdrv_4ga_s ntdrv; 15 16 int n_eth_dev_init_count; 17 }; 18 19 #endif /* __NTOS_SYSTEM_H__ */ 20