xref: /linux/tools/usb/usbip/libsrc/usbip_host_driver.h (revision 3391ba0e2792411dc3372b76a4662971d6eaa405)
1588b48caSValentina Manea /*
2588b48caSValentina Manea  * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
3588b48caSValentina Manea  *               2005-2007 Takahiro Hirofuchi
4*3391ba0eSKrzysztof Opasiak  * Copyright (C) 2015-2016 Samsung Electronics
5*3391ba0eSKrzysztof Opasiak  *               Igor Kotrasinski <i.kotrasinsk@samsung.com>
6*3391ba0eSKrzysztof Opasiak  *               Krzysztof Opasiak <k.opasiak@samsung.com>
7588b48caSValentina Manea  *
8588b48caSValentina Manea  * This program is free software: you can redistribute it and/or modify
9588b48caSValentina Manea  * it under the terms of the GNU General Public License as published by
10588b48caSValentina Manea  * the Free Software Foundation, either version 2 of the License, or
11588b48caSValentina Manea  * (at your option) any later version.
12588b48caSValentina Manea  *
13588b48caSValentina Manea  * This program is distributed in the hope that it will be useful,
14588b48caSValentina Manea  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15588b48caSValentina Manea  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16588b48caSValentina Manea  * GNU General Public License for more details.
17588b48caSValentina Manea  *
18588b48caSValentina Manea  * You should have received a copy of the GNU General Public License
19588b48caSValentina Manea  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20588b48caSValentina Manea  */
21588b48caSValentina Manea 
22588b48caSValentina Manea #ifndef __USBIP_HOST_DRIVER_H
23588b48caSValentina Manea #define __USBIP_HOST_DRIVER_H
24588b48caSValentina Manea 
25588b48caSValentina Manea #include <stdint.h>
26588b48caSValentina Manea #include "usbip_common.h"
27588b48caSValentina Manea #include "list.h"
28*3391ba0eSKrzysztof Opasiak #include "usbip_host_common.h"
29588b48caSValentina Manea 
30*3391ba0eSKrzysztof Opasiak extern struct usbip_host_driver host_driver;
31588b48caSValentina Manea 
32588b48caSValentina Manea #endif /* __USBIP_HOST_DRIVER_H */
33