Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/usb/usbip/libsrc/usbip_host_driver.h
26288 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Copyright (C) 2011 matt mooney <[email protected]>
4
* 2005-2007 Takahiro Hirofuchi
5
* Copyright (C) 2015-2016 Samsung Electronics
6
* Igor Kotrasinski <[email protected]>
7
* Krzysztof Opasiak <[email protected]>
8
*/
9
10
#ifndef __USBIP_HOST_DRIVER_H
11
#define __USBIP_HOST_DRIVER_H
12
13
#include <stdint.h>
14
#include "usbip_common.h"
15
#include "list.h"
16
#include "usbip_host_common.h"
17
18
extern struct usbip_host_driver host_driver;
19
20
#endif /* __USBIP_HOST_DRIVER_H */
21
22