21 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/* Marvell RVU PF/VF Netdev Devlink3 *4 * Copyright (C) 2021 Marvell.5 *6 */7 8#ifndef OTX2_DEVLINK_H9#define OTX2_DEVLINK_H10 11struct otx2_devlink {12 struct devlink *dl;13 struct otx2_nic *pfvf;14};15 16/* Devlink APIs */17int otx2_register_dl(struct otx2_nic *pfvf);18void otx2_unregister_dl(struct otx2_nic *pfvf);19 20#endif /* RVU_DEVLINK_H */21