linux/drivers/crypto/intel/qat/qat_common/adf_pfvf_vf_msg.c

// SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only)
/* Copyright(c) 2015 - 2021 Intel Corporation */
#include <linux/bitfield.h>
#include "adf_accel_devices.h"
#include "adf_common_drv.h"
#include "adf_pfvf_msg.h"
#include "adf_pfvf_vf_msg.h"
#include "adf_pfvf_vf_proto.h"

/**
 * adf_vf2pf_notify_init() - send init msg to PF
 * @accel_dev:  Pointer to acceleration VF device.
 *
 * Function sends an init message from the VF to a PF
 *
 * Return: 0 on success, error code otherwise.
 */
int adf_vf2pf_notify_init(struct adf_accel_dev *accel_dev)
{}
EXPORT_SYMBOL_GPL();

/**
 * adf_vf2pf_notify_shutdown() - send shutdown msg to PF
 * @accel_dev:  Pointer to acceleration VF device.
 *
 * Function sends a shutdown message from the VF to a PF
 *
 * Return: void
 */
void adf_vf2pf_notify_shutdown(struct adf_accel_dev *accel_dev)
{}
EXPORT_SYMBOL_GPL();

int adf_vf2pf_request_version(struct adf_accel_dev *accel_dev)
{}

int adf_vf2pf_get_capabilities(struct adf_accel_dev *accel_dev)
{}

int adf_vf2pf_get_ring_to_svc(struct adf_accel_dev *accel_dev)
{}