usbip_device_driver.h 610 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Copyright (C) 2015 Karol Kosik <karo9@interia.eu>
  4. * 2015 Samsung Electronics
  5. * Author: Igor Kotrasinski <i.kotrasinsk@samsung.com>
  6. *
  7. * Based on tools/usb/usbip/libsrc/usbip_host_driver.c, which is:
  8. * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
  9. * 2005-2007 Takahiro Hirofuchi
  10. */
  11. #ifndef __USBIP_DEVICE_DRIVER_H
  12. #define __USBIP_DEVICE_DRIVER_H
  13. #include <stdint.h>
  14. #include "usbip_common.h"
  15. #include "usbip_host_common.h"
  16. #include "list.h"
  17. extern struct usbip_host_driver device_driver;
  18. #endif /* __USBIP_DEVICE_DRIVER_H */