Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Marvell RVU PF/VF Netdev Devlink
0003  *
0004  * Copyright (C) 2021 Marvell.
0005  *
0006  */
0007 
0008 #ifndef OTX2_DEVLINK_H
0009 #define OTX2_DEVLINK_H
0010 
0011 struct otx2_devlink {
0012     struct devlink *dl;
0013     struct otx2_nic *pfvf;
0014 };
0015 
0016 /* Devlink APIs */
0017 int otx2_register_dl(struct otx2_nic *pfvf);
0018 void otx2_unregister_dl(struct otx2_nic *pfvf);
0019 
0020 #endif /* RVU_DEVLINK_H */