1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * u_phonet.h - interface to Phonet
5 * Copyright (C) 2007-2008 by Nokia Corporation
11 #include <linux/usb/composite.h>
12 #include <linux/usb/cdc.h>
14 struct f_phonet_opts
{
15 struct usb_function_instance func_inst
;
17 struct net_device
*net
;
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
);
26 #endif /* __U_PHONET_H */