aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2009-03-16 22:12:43 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 14:54:06 -0700
commit2deee55e66d0de60ca28703da5aba8bdaf27b4ba (patch)
treeef4c42317dfbd80267852986046613d499e1bed4
parent0642feb3e1ffe896ff0fd67cad5fc33a51fe4651 (diff)
Staging: comedi: Remove raw_channel typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/comedi/drivers/jr3_pci.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/comedi/drivers/jr3_pci.h b/drivers/staging/comedi/drivers/jr3_pci.h
index 4576dd28ae4..43d1411417a 100644
--- a/drivers/staging/comedi/drivers/jr3_pci.h
+++ b/drivers/staging/comedi/drivers/jr3_pci.h
@@ -41,11 +41,11 @@ static inline void set_s16(volatile s32 * p, s16 val)
* varies with different sensors.
*/
-typedef struct raw_channel {
+struct raw_channel {
u32 raw_time;
s32 raw_data;
s32 reserved[2];
-} raw_channel_t;
+};
/* The force_array structure shows the layout for the decoupled and
* filtered force data.
@@ -267,7 +267,7 @@ typedef struct force_sensor_data {
/* Raw_channels is the area used to store the raw data coming from */
/* 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 notice. */