brintos

brintos / linux-shallow public Read only

0
0
Text · 406 B · 165d266 Raw
14 lines · c
1/* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only) */2/* Copyright(c) 2021 Intel Corporation */3#ifndef ADF_PFVF_PF_PROTO_H4#define ADF_PFVF_PF_PROTO_H5 6#include <linux/types.h>7#include "adf_accel_devices.h"8 9int adf_send_pf2vf_msg(struct adf_accel_dev *accel_dev, u8 vf_nr, struct pfvf_message msg);10 11int adf_enable_pf2vf_comms(struct adf_accel_dev *accel_dev);12 13#endif /* ADF_PFVF_PF_PROTO_H */14