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

Staging: comedi: Remove intern_transform_t typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4e1ccd97
...@@ -254,12 +254,12 @@ enum link_types { ...@@ -254,12 +254,12 @@ enum link_types {
/* TRANSFORM */ /* TRANSFORM */
/* Structure used to describe a transform. */ /* Structure used to describe a transform. */
typedef struct { struct intern_transform {
struct { struct {
u32 link_type; u32 link_type;
s32 link_amount; s32 link_amount;
} link[8]; } link[8];
} intern_transform_t; };
/* JR3 force/torque sensor data definition. For more information see sensor and */ /* JR3 force/torque sensor data definition. For more information see sensor and */
/* hardware manuals. */ /* hardware manuals. */
...@@ -666,7 +666,7 @@ typedef struct force_sensor_data { ...@@ -666,7 +666,7 @@ typedef struct force_sensor_data {
* definition of the transform structure (pg. 26). * definition of the transform structure (pg. 26).
*/ */
intern_transform_t transforms[0x10]; /* offset 0x0200 */ struct intern_transform transforms[0x10]; /* offset 0x0200 */
} jr3_channel_t; } jr3_channel_t;
struct jr3_t { struct jr3_t {
......
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