16 lines
326 B
C
16 lines
326 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/* Copyright (c) 2021 Hisilicon Limited. */
|
|
|
|
#ifndef __HCLGE_DEVLINK_H
|
|
#define __HCLGE_DEVLINK_H
|
|
|
|
#include "hclge_main.h"
|
|
|
|
struct hclge_devlink_priv {
|
|
struct hclge_dev *hdev;
|
|
};
|
|
|
|
int hclge_devlink_init(struct hclge_dev *hdev);
|
|
void hclge_devlink_uninit(struct hclge_dev *hdev);
|
|
#endif
|