]> Git Repo - linux.git/blob - drivers/usb/misc/rio500_usb.h
tcp: add one skb cache for tx
[linux.git] / drivers / usb / misc / rio500_usb.h
1 // SPDX-License-Identifier: GPL-2.0+
2 /*  ----------------------------------------------------------------------
3     Copyright (C) 2000  Cesar Miquel  ([email protected])
4     ---------------------------------------------------------------------- */
5
6 #define RIO_SEND_COMMAND                        0x1
7 #define RIO_RECV_COMMAND                        0x2
8
9 #define RIO_DIR_OUT                             0x0
10 #define RIO_DIR_IN                              0x1
11
12 struct RioCommand {
13         short length;
14         int request;
15         int requesttype;
16         int value;
17         int index;
18         void __user *buffer;
19         int timeout;
20 };
This page took 0.037793 seconds and 4 git commands to generate.