Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
26 lines
590 B
C
26 lines
590 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* u_phonet.h - interface to Phonet
|
|
*
|
|
* Copyright (C) 2007-2008 by Nokia Corporation
|
|
*/
|
|
|
|
#ifndef __U_PHONET_H
|
|
#define __U_PHONET_H
|
|
|
|
#include <linux/usb/composite.h>
|
|
#include <linux/usb/cdc.h>
|
|
|
|
struct f_phonet_opts {
|
|
struct usb_function_instance func_inst;
|
|
bool bound;
|
|
struct net_device *net;
|
|
};
|
|
|
|
struct net_device *gphonet_setup_default(void);
|
|
void gphonet_set_gadget(struct net_device *net, struct usb_gadget *g);
|
|
int gphonet_register_netdev(struct net_device *net);
|
|
void gphonet_cleanup(struct net_device *dev);
|
|
|
|
#endif /* __U_PHONET_H */
|