| 1 | // SPDX-License-Identifier: GPL-2.0 |
|---|---|
| 2 | /* |
| 3 | * USB CDC Device Management subdriver |
| 4 | * |
| 5 | * Copyright (c) 2012 Bjørn Mork <bjorn@mork.no> |
| 6 | */ |
| 7 | |
| 8 | #ifndef __LINUX_USB_CDC_WDM_H |
| 9 | #define __LINUX_USB_CDC_WDM_H |
| 10 | |
| 11 | #include <linux/wwan.h> |
| 12 | #include <uapi/linux/usb/cdc-wdm.h> |
| 13 | |
| 14 | extern struct usb_driver *usb_cdc_wdm_register(struct usb_interface *intf, |
| 15 | struct usb_endpoint_descriptor *ep, |
| 16 | int bufsize, enum wwan_port_type type, |
| 17 | int (*manage_power)(struct usb_interface *, int)); |
| 18 | |
| 19 | #endif /* __LINUX_USB_CDC_WDM_H */ |
| 20 |
