1
2
3
4
5
6
7
8 #ifndef __U_PHONET_H
9 #define __U_PHONET_H
10
11 #include <linux/usb/composite.h>
12 #include <linux/usb/cdc.h>
13
14 struct f_phonet_opts {
15 struct usb_function_instance func_inst;
16 bool bound;
17 struct net_device *net;
18 };
19
20 struct net_device *gphonet_setup_default(void);
21 void gphonet_set_gadget(struct net_device *net, struct usb_gadget *g);
22 int gphonet_register_netdev(struct net_device *net);
23 int phonet_bind_config(struct usb_configuration *c, struct net_device *dev);
24 void gphonet_cleanup(struct net_device *dev);
25
26 #endif