mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
5d62afbe95
Now that the SPDX tag is in all USB files, that identifies the license in a specific and legally-defined manner. So the extra GPL text wording can be removed as it is no longer needed at all. This is done on a quest to remove the 700+ different ways that files in the kernel describe the GPL license text. And there's unneeded stuff like the address (sometimes incorrect) for the FSF which is never needed. No copyright headers or other non-license-description text was removed. Cc: Keith Packard <keithp@keithp.com> Cc: Juergen Stuber <starblue@users.sourceforge.net> Cc: Cesar Miquel <miquel@df.uba.ar> Cc: Richard Leitner <richard.leitner@skidata.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21 lines
515 B
C
21 lines
515 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/* ----------------------------------------------------------------------
|
|
Copyright (C) 2000 Cesar Miquel (miquel@df.uba.ar)
|
|
---------------------------------------------------------------------- */
|
|
|
|
#define RIO_SEND_COMMAND 0x1
|
|
#define RIO_RECV_COMMAND 0x2
|
|
|
|
#define RIO_DIR_OUT 0x0
|
|
#define RIO_DIR_IN 0x1
|
|
|
|
struct RioCommand {
|
|
short length;
|
|
int request;
|
|
int requesttype;
|
|
int value;
|
|
int index;
|
|
void __user *buffer;
|
|
int timeout;
|
|
};
|