-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 289656 b: refs/heads/master c: 3cc3615 h: refs/heads/master v: v3
- Loading branch information
Bjørn Mork
authored and
Greg Kroah-Hartman
committed
Mar 8, 2012
1 parent
7ac3a97
commit cd9a2db
Showing
3 changed files
with
79 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b0c13860808a528cd580fdca61aef9f73352a331 | ||
refs/heads/master: 3cc3615749dbd1b891512d5c9a5bf4559cfa9741 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* USB CDC Device Management subdriver | ||
* | ||
* Copyright (c) 2012 Bjørn Mork <bjorn@mork.no> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* version 2 as published by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef __LINUX_USB_CDC_WDM_H | ||
#define __LINUX_USB_CDC_WDM_H | ||
|
||
extern struct usb_driver *usb_cdc_wdm_register(struct usb_interface *intf, | ||
struct usb_endpoint_descriptor *ep, | ||
int bufsize, | ||
int (*manage_power)(struct usb_interface *, int)); | ||
|
||
#endif /* __LINUX_USB_CDC_WDM_H */ |