1 /* 2 * Copyright (C) 2019-2022 Intel Corporation. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef PCI_DEV_H_ 8 #define PCI_DEV_H_ 9 10 #include <asm/vm_config.h> 11 12 extern struct acrn_vm_pci_dev_config sos_pci_devs[CONFIG_MAX_PCI_DEV_NUM]; 13 14 struct pci_pdev; 15 struct acrn_vm_pci_dev_config *init_one_dev_config(struct pci_pdev *pdev); 16 17 #endif /* PCI_DEV_H_ */ 18