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

Staging: comedi: Remove raw_channel typedef

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0642feb3
...@@ -41,11 +41,11 @@ static inline void set_s16(volatile s32 * p, s16 val) ...@@ -41,11 +41,11 @@ static inline void set_s16(volatile s32 * p, s16 val)
* varies with different sensors. * varies with different sensors.
*/ */
typedef struct raw_channel { struct raw_channel {
u32 raw_time; u32 raw_time;
s32 raw_data; s32 raw_data;
s32 reserved[2]; s32 reserved[2];
} raw_channel_t; };
/* The force_array structure shows the layout for the decoupled and /* The force_array structure shows the layout for the decoupled and
* filtered force data. * filtered force data.
...@@ -267,7 +267,7 @@ typedef struct force_sensor_data { ...@@ -267,7 +267,7 @@ typedef struct force_sensor_data {
/* Raw_channels is the area used to store the raw data coming from */ /* Raw_channels is the area used to store the raw data coming from */
/* the sensor. */ /* the sensor. */
raw_channel_t raw_channels[16]; /* offset 0x0000 */ struct raw_channel raw_channels[16]; /* offset 0x0000 */
/* Copyright is a null terminated ASCII string containing the JR3 */ /* Copyright is a null terminated ASCII string containing the JR3 */
/* copyright notice. */ /* copyright notice. */
......
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