Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0-or-later */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  *               2005-2007 Takahiro Hirofuchi
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #ifndef __USBIP_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define __USBIP_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #ifdef HAVE_CONFIG_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #include "../config.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) /* usbip commands */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) int usbip_attach(int argc, char *argv[]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) int usbip_detach(int argc, char *argv[]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) int usbip_list(int argc, char *argv[]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) int usbip_bind(int argc, char *argv[]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) int usbip_unbind(int argc, char *argv[]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) int usbip_port_show(int argc, char *argv[]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) void usbip_attach_usage(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) void usbip_detach_usage(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) void usbip_list_usage(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) void usbip_bind_usage(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) void usbip_unbind_usage(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) #endif /* __USBIP_H */