OLD | NEW |
1 /* | 1 /* |
2 * usbfs header structures | 2 * usbfs header structures |
3 * Copyright (C) 2007 Daniel Drake <dsd@gentoo.org> | 3 * Copyright (C) 2007 Daniel Drake <dsd@gentoo.org> |
4 * Copyright (c) 2001 Johannes Erdfelt <johannes@erdfelt.com> | 4 * Copyright (c) 2001 Johannes Erdfelt <johannes@erdfelt.com> |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 #define IOCTL_USBFS_RELEASEINTF _IOR('U', 16, unsigned int) | 129 #define IOCTL_USBFS_RELEASEINTF _IOR('U', 16, unsigned int) |
130 #define IOCTL_USBFS_CONNECTINFO _IOW('U', 17, struct usbfs_connectinfo) | 130 #define IOCTL_USBFS_CONNECTINFO _IOW('U', 17, struct usbfs_connectinfo) |
131 #define IOCTL_USBFS_IOCTL _IOWR('U', 18, struct usbfs_ioctl) | 131 #define IOCTL_USBFS_IOCTL _IOWR('U', 18, struct usbfs_ioctl) |
132 #define IOCTL_USBFS_HUB_PORTINFO _IOR('U', 19, struct usbfs_hub_portinfo) | 132 #define IOCTL_USBFS_HUB_PORTINFO _IOR('U', 19, struct usbfs_hub_portinfo) |
133 #define IOCTL_USBFS_RESET _IO('U', 20) | 133 #define IOCTL_USBFS_RESET _IO('U', 20) |
134 #define IOCTL_USBFS_CLEAR_HALT _IOR('U', 21, unsigned int) | 134 #define IOCTL_USBFS_CLEAR_HALT _IOR('U', 21, unsigned int) |
135 #define IOCTL_USBFS_DISCONNECT _IO('U', 22) | 135 #define IOCTL_USBFS_DISCONNECT _IO('U', 22) |
136 #define IOCTL_USBFS_CONNECT _IO('U', 23) | 136 #define IOCTL_USBFS_CONNECT _IO('U', 23) |
137 | 137 |
138 #endif | 138 #endif |
OLD | NEW |