Commit f3fd0937 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

Staging: comedi: Remove vect_bits_t, warning_bits_t, and error_bits_t typedefs

These are enums that are not used anywhere at this time.
This removes the typedef, but leaves the enum in place.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 5671c0c2
...@@ -87,7 +87,8 @@ struct six_axis_array { ...@@ -87,7 +87,8 @@ struct six_axis_array {
* have two force vectors, set changeV1 to 1. * have two force vectors, set changeV1 to 1.
*/ */
typedef enum { /* vect_bits appears to be unused at this time */
enum {
fx = 0x0001, fx = 0x0001,
fy = 0x0002, fy = 0x0002,
fz = 0x0004, fz = 0x0004,
...@@ -108,7 +109,7 @@ typedef enum { ...@@ -108,7 +109,7 @@ typedef enum {
* exceeded the near saturation value. * exceeded the near saturation value.
*/ */
typedef enum { enum {
fx_near_sat = 0x0001, fx_near_sat = 0x0001,
fy_near_sat = 0x0002, fy_near_sat = 0x0002,
fz_near_sat = 0x0004, fz_near_sat = 0x0004,
...@@ -176,7 +177,7 @@ typedef enum { ...@@ -176,7 +177,7 @@ typedef enum {
* the sensor data is not being received correctly. * the sensor data is not being received correctly.
*/ */
typedef enum { enum error_bits_t {
fx_sat = 0x0001, fx_sat = 0x0001,
fy_sat = 0x0002, fy_sat = 0x0002,
fz_sat = 0x0004, fz_sat = 0x0004,
...@@ -189,7 +190,7 @@ typedef enum { ...@@ -189,7 +190,7 @@ typedef enum {
cal_crc_bad = 0x2000, cal_crc_bad = 0x2000,
watch_dog2 = 0x4000, watch_dog2 = 0x4000,
watch_dog = 0x8000 watch_dog = 0x8000
} error_bits_t; };
/* THRESH_STRUCT */ /* THRESH_STRUCT */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment