OLD | NEW |
1 /* | 1 /* |
2 * Linux usbfs backend for libusb | 2 * Linux usbfs backend for libusb |
3 * Copyright (C) 2007-2009 Daniel Drake <dsd@gentoo.org> | 3 * Copyright (C) 2007-2009 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 2293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2304 #ifdef USBI_TIMERFD_AVAILABLE | 2304 #ifdef USBI_TIMERFD_AVAILABLE |
2305 .get_timerfd_clockid = op_get_timerfd_clockid, | 2305 .get_timerfd_clockid = op_get_timerfd_clockid, |
2306 #endif | 2306 #endif |
2307 | 2307 |
2308 .device_priv_size = sizeof(struct linux_device_priv), | 2308 .device_priv_size = sizeof(struct linux_device_priv), |
2309 .device_handle_priv_size = sizeof(struct linux_device_handle_priv), | 2309 .device_handle_priv_size = sizeof(struct linux_device_handle_priv), |
2310 .transfer_priv_size = sizeof(struct linux_transfer_priv), | 2310 .transfer_priv_size = sizeof(struct linux_transfer_priv), |
2311 .add_iso_packet_size = 0, | 2311 .add_iso_packet_size = 0, |
2312 }; | 2312 }; |
2313 | 2313 |
OLD | NEW |