xref: /linux/tools/usb/usbip/libsrc/usbip_device_driver.h (revision 7b3f74f7e0601b2767aee7e188b1e3a912c082a2)
1*7b3f74f7SKrzysztof Opasiak /*
2*7b3f74f7SKrzysztof Opasiak  * Copyright (C) 2015 Karol Kosik <karo9@interia.eu>
3*7b3f74f7SKrzysztof Opasiak  *		 2015 Samsung Electronics
4*7b3f74f7SKrzysztof Opasiak  * Author:	 Igor Kotrasinski <i.kotrasinsk@samsung.com>
5*7b3f74f7SKrzysztof Opasiak  *
6*7b3f74f7SKrzysztof Opasiak  * Based on tools/usb/usbip/libsrc/usbip_host_driver.c, which is:
7*7b3f74f7SKrzysztof Opasiak  * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
8*7b3f74f7SKrzysztof Opasiak  *               2005-2007 Takahiro Hirofuchi
9*7b3f74f7SKrzysztof Opasiak  *
10*7b3f74f7SKrzysztof Opasiak  * This program is free software; you can redistribute it and/or modify
11*7b3f74f7SKrzysztof Opasiak  * it under the terms of the GNU General Public License as published by
12*7b3f74f7SKrzysztof Opasiak  * the Free Software Foundation; either version 2 of the License, or
13*7b3f74f7SKrzysztof Opasiak  * (at your option) any later version.
14*7b3f74f7SKrzysztof Opasiak  *
15*7b3f74f7SKrzysztof Opasiak  * This program is distributed in the hope that it will be useful,
16*7b3f74f7SKrzysztof Opasiak  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*7b3f74f7SKrzysztof Opasiak  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18*7b3f74f7SKrzysztof Opasiak  * GNU General Public License for more details.
19*7b3f74f7SKrzysztof Opasiak  *
20*7b3f74f7SKrzysztof Opasiak  * You should have received a copy of the GNU General Public License
21*7b3f74f7SKrzysztof Opasiak  * along with this program. If not, see <http://www.gnu.org/licenses/>.
22*7b3f74f7SKrzysztof Opasiak  */
23*7b3f74f7SKrzysztof Opasiak 
24*7b3f74f7SKrzysztof Opasiak #ifndef __USBIP_DEVICE_DRIVER_H
25*7b3f74f7SKrzysztof Opasiak #define __USBIP_DEVICE_DRIVER_H
26*7b3f74f7SKrzysztof Opasiak 
27*7b3f74f7SKrzysztof Opasiak #include <stdint.h>
28*7b3f74f7SKrzysztof Opasiak #include "usbip_common.h"
29*7b3f74f7SKrzysztof Opasiak #include "usbip_host_common.h"
30*7b3f74f7SKrzysztof Opasiak #include "list.h"
31*7b3f74f7SKrzysztof Opasiak 
32*7b3f74f7SKrzysztof Opasiak extern struct usbip_host_driver device_driver;
33*7b3f74f7SKrzysztof Opasiak 
34*7b3f74f7SKrzysztof Opasiak #endif /* __USBIP_DEVICE_DRIVER_H */
35