xref: /linux/drivers/net/ethernet/intel/ice/devlink/devlink_port.h (revision 001821b0e79716c4e17c71d8e053a23599a7a508)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2024, Intel Corporation. */
3 
4 #ifndef _DEVLINK_PORT_H_
5 #define _DEVLINK_PORT_H_
6 
7 int ice_devlink_create_pf_port(struct ice_pf *pf);
8 void ice_devlink_destroy_pf_port(struct ice_pf *pf);
9 int ice_devlink_create_vf_port(struct ice_vf *vf);
10 void ice_devlink_destroy_vf_port(struct ice_vf *vf);
11 
12 #endif /* _DEVLINK_PORT_H_ */
13