xref: /linux/include/net/psp/functions.h (revision 00c94ca2b99e6610e483f92e531b319eeaed94aa)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __NET_PSP_HELPERS_H
4 #define __NET_PSP_HELPERS_H
5 
6 #include <net/psp/types.h>
7 
8 /* Driver-facing API */
9 struct psp_dev *
10 psp_dev_create(struct net_device *netdev, struct psp_dev_ops *psd_ops,
11 	       struct psp_dev_caps *psd_caps, void *priv_ptr);
12 void psp_dev_unregister(struct psp_dev *psd);
13 
14 #endif /* __NET_PSP_HELPERS_H */
15