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