Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.7 20 lines 484 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright(c) 2023 Advanced Micro Devices, Inc */ 3 4#ifndef _PDSC_AUXBUS_H_ 5#define _PDSC_AUXBUS_H_ 6 7#include <linux/auxiliary_bus.h> 8 9struct pds_auxiliary_dev { 10 struct auxiliary_device aux_dev; 11 struct pci_dev *vf_pdev; 12 u16 client_id; 13}; 14 15int pds_client_adminq_cmd(struct pds_auxiliary_dev *padev, 16 union pds_core_adminq_cmd *req, 17 size_t req_len, 18 union pds_core_adminq_comp *resp, 19 u64 flags); 20#endif /* _PDSC_AUXBUS_H_ */