1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Copyright (c) 2025, Intel Corporation. */ 3 4 #ifndef _IXGBE_DEVLINK_H_ 5 #define _IXGBE_DEVLINK_H_ 6 7 struct ixgbe_adapter *ixgbe_allocate_devlink(struct device *dev); 8 int ixgbe_devlink_register_port(struct ixgbe_adapter *adapter); 9 void ixgbe_devlink_init_regions(struct ixgbe_adapter *adapter); 10 void ixgbe_devlink_destroy_regions(struct ixgbe_adapter *adapter); 11 12 #endif /* _IXGBE_DEVLINK_H_ */ 13