mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Add common wx_configure_vf and wx_set_mac_vf for ngbevf and txgbevf. Signed-off-by: Mengyuan Lou <mengyuanlou@net-swift.com> Link: https://patch.msgid.link/20250704094923.652-4-mengyuanlou@net-swift.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
14 lines
469 B
C
14 lines
469 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2015 - 2025 Beijing WangXun Technology Co., Ltd. */
|
|
|
|
#ifndef _WX_VF_LIB_H_
|
|
#define _WX_VF_LIB_H_
|
|
|
|
void wx_configure_msix_vf(struct wx *wx);
|
|
int wx_write_uc_addr_list_vf(struct net_device *netdev);
|
|
void wx_setup_psrtype_vf(struct wx *wx);
|
|
void wx_setup_vfmrqc_vf(struct wx *wx);
|
|
void wx_configure_tx_vf(struct wx *wx);
|
|
void wx_configure_rx_ring_vf(struct wx *wx, struct wx_ring *ring);
|
|
|
|
#endif /* _WX_VF_LIB_H_ */
|