-
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: 364370 b: refs/heads/master c: 3edce1c h: refs/heads/master v: v3
- Loading branch information
Bjørn Mork
authored and
Greg Kroah-Hartman
committed
Mar 25, 2013
1 parent
7da7835
commit 0fc7bf8
Showing
5 changed files
with
44 additions
and
1 deletion.
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: 769d7368b1727b1b5369d88badf0cbdf0163e079 | ||
refs/heads/master: 3edce1cf813aa6a087df7730cec0e67d57288300 |
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
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,21 @@ | ||
/* | ||
* USB CDC Device Management userspace API definitions | ||
* | ||
* 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 _UAPI__LINUX_USB_CDC_WDM_H | ||
#define _UAPI__LINUX_USB_CDC_WDM_H | ||
|
||
/* | ||
* This IOCTL is used to retrieve the wMaxCommand for the device, | ||
* defining the message limit for both reading and writing. | ||
* | ||
* For CDC WDM functions this will be the wMaxCommand field of the | ||
* Device Management Functional Descriptor. | ||
*/ | ||
#define IOCTL_WDM_MAX_COMMAND _IOR('H', 0xA0, __u16) | ||
|
||
#endif /* _UAPI__LINUX_USB_CDC_WDM_H */ |