blob: 9b895f93d8de9b052b5573c0d456de9088f4c1cd [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Bjørn Mork3cc36152012-03-06 17:29:22 +01002/*
3 * USB CDC Device Management subdriver
4 *
5 * Copyright (c) 2012 Bjørn Mork <bjorn@mork.no>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 */
11
12#ifndef __LINUX_USB_CDC_WDM_H
13#define __LINUX_USB_CDC_WDM_H
14
Bjørn Mork3edce1c2013-03-17 21:00:06 +010015#include <uapi/linux/usb/cdc-wdm.h>
16
Bjørn Mork3cc36152012-03-06 17:29:22 +010017extern struct usb_driver *usb_cdc_wdm_register(struct usb_interface *intf,
18 struct usb_endpoint_descriptor *ep,
19 int bufsize,
20 int (*manage_power)(struct usb_interface *, int));
21
22#endif /* __LINUX_USB_CDC_WDM_H */