summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/lm32/shared/milkymist_usbinput/milkymist_usbinput.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/lm32/shared/milkymist_usbinput/milkymist_usbinput.h')
-rw-r--r--c/src/lib/libbsp/lm32/shared/milkymist_usbinput/milkymist_usbinput.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/c/src/lib/libbsp/lm32/shared/milkymist_usbinput/milkymist_usbinput.h b/c/src/lib/libbsp/lm32/shared/milkymist_usbinput/milkymist_usbinput.h
deleted file mode 100644
index 04c376fa8a..0000000000
--- a/c/src/lib/libbsp/lm32/shared/milkymist_usbinput/milkymist_usbinput.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/**
- * @file
- * @ingroup lm32_milkymist_usbinput lm32_milkymist_shared
- * @brief Milkymist USB input devices driver
- */
-
-/* milkymist_usbinput.h
- *
- * Milkymist USB input devices driver for RTEMS
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- *
- * COPYRIGHT (c) 2010, 2012 Sebastien Bourdeauducq
- */
-
-/**
- * @defgroup lm32_milkymist_usbinput Milkymist USB input devices
- * @ingroup lm32_milkymist_shared
- * @brief Milkymist USB input devices driver
- * @{
- */
-
-#ifndef __MILKYMIST_USBINPUT_H_
-#define __MILKYMIST_USBINPUT_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* Ioctls */
-#define USBINPUT_LOAD_FIRMWARE 0x5500
-
-struct usbinput_firmware_description {
- const unsigned char *data;
- int length;
-};
-
-rtems_device_driver usbinput_initialize(
- rtems_device_major_number major,
- rtems_device_minor_number minor,
- void *arg
-);
-
-rtems_device_driver usbinput_open(
- rtems_device_major_number major,
- rtems_device_minor_number minor,
- void *arg
-);
-
-rtems_device_driver usbinput_read(
- rtems_device_major_number major,
- rtems_device_minor_number minor,
- void *arg
-);
-
-rtems_device_driver usbinput_control(
- rtems_device_major_number major,
- rtems_device_minor_number minor,
- void *arg
-);
-
-#define USBINPUT_DRIVER_TABLE_ENTRY {usbinput_initialize, \
-usbinput_open, NULL, usbinput_read, NULL, usbinput_control}
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __MILKYMIST_USBINPUT_H_ */