summaryrefslogtreecommitdiff
path: root/drivers/usb/misc/rio500_usb.h
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2019-09-23 18:18:43 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-04 10:53:36 +0200
commit015664d15270a112c2371d812f03f7c579b35a73 (patch)
treeb0eb88204ba848ac7a0e6b37443be03f77746668 /drivers/usb/misc/rio500_usb.h
parent54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c (diff)
USB: rio500: Remove Rio 500 kernel driver
The Rio500 kernel driver has not been used by Rio500 owners since 2001 not long after the rio500 project added support for a user-space USB stack through the very first versions of usbdevfs and then libusb. Support for the kernel driver was removed from the upstream utilities in 2008: https://gitlab.freedesktop.org/hadess/rio500/commit/943f624ab721eb8281c287650fcc9e2026f6f5db Cc: Cesar Miquel <miquel@df.uba.ar> Signed-off-by: Bastien Nocera <hadess@hadess.net> Cc: stable <stable@vger.kernel.org> Link: https://lore.kernel.org/r/6251c17584d220472ce882a3d9c199c401a51a71.camel@hadess.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/misc/rio500_usb.h')
-rw-r--r--drivers/usb/misc/rio500_usb.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/drivers/usb/misc/rio500_usb.h b/drivers/usb/misc/rio500_usb.h
deleted file mode 100644
index 6db7a5863496..000000000000
--- a/drivers/usb/misc/rio500_usb.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// 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;
-};