1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * Copyright(c) 2023 Napatech A/S 4 */ 5 6 #include "nthw_platform_drv.h" 7 8 nthw_adapter_id_t nthw_platform_get_nthw_adapter_id(const uint16_t n_pci_device_id) 9 { 10 switch (n_pci_device_id) { 11 case NT_HW_PCI_DEVICE_ID_NT200A02: 12 return NT_HW_ADAPTER_ID_NT200A02; 13 14 default: 15 return NT_HW_ADAPTER_ID_UNKNOWN; 16 } 17 } 18