xref: /linux/drivers/net/ethernet/intel/ixd/ixd_virtchnl.h (revision 91ec2035134982b98fab0609a9fd8480e8217dc1)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* Copyright (C) 2025 Intel Corporation */
3 
4 #ifndef _IXD_VIRTCHNL_H_
5 #define _IXD_VIRTCHNL_H_
6 
7 int ixd_vc_dev_init(struct ixd_adapter *adapter);
8 bool ixd_vc_can_handle_msg(struct libie_ctlq_msg *ctlq_msg);
9 void ixd_vc_recv_event_msg(struct ixd_adapter *adapter,
10 			   struct libie_ctlq_msg *ctlq_msg);
11 
12 #endif /* _IXD_VIRTCHNL_H_ */
13