1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2022 Intel Corporation */ 3 /* $FreeBSD$ */ 4 #ifndef ADF_GEN4_PFVF_H 5 #define ADF_GEN4_PFVF_H 6 7 #include "adf_accel_devices.h" 8 9 void adf_gen4_init_vf_pfvf_ops(struct adf_pfvf_ops *pfvf_ops); 10 static inline void 11 adf_gen4_init_pf_pfvf_ops(struct adf_pfvf_ops *pfvf_ops) 12 { 13 pfvf_ops->enable_comms = adf_pfvf_comms_disabled; 14 } 15 16 #endif /* ADF_GEN4_PFVF_H */ 17