1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* Copyright (c) 2021 Hisilicon Limited. */ 3 4 #ifndef __HCLGEVF_DEVLINK_H 5 #define __HCLGEVF_DEVLINK_H 6 7 #include "hclgevf_main.h" 8 9 struct hclgevf_devlink_priv { 10 struct hclgevf_dev *hdev; 11 }; 12 13 int hclgevf_devlink_init(struct hclgevf_dev *hdev); 14 void hclgevf_devlink_uninit(struct hclgevf_dev *hdev); 15 #endif 16