Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141591
b: refs/heads/master
c: 6708079
h: refs/heads/master
i:
  141589: 37f8341
  141587: 2559489
  141583: 071c305
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 3dc077f commit 328bc95
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1c31ddaf9b46bec3df20b3a3b95049f45f43bf84
refs/heads/master: 67080790a44f6633acc250db915a4f6481e81ba1
26 changes: 13 additions & 13 deletions trunk/drivers/staging/comedi/drivers/jr3_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ typedef struct {
} poll_delay_t;

typedef struct {
volatile jr3_channel_t *channel;
volatile struct jr3_channel *channel;
unsigned long next_time_min;
unsigned long next_time_max;
enum { state_jr3_poll,
Expand Down Expand Up @@ -173,7 +173,7 @@ static poll_delay_t poll_delay_min_max(int min, int max)
return result;
}

static int is_complete(volatile jr3_channel_t * channel)
static int is_complete(volatile struct jr3_channel *channel)
{
return get_s16(&channel->command_word0) == 0;
}
Expand All @@ -185,7 +185,7 @@ typedef struct {
} link[8];
} transform_t;

static void set_transforms(volatile jr3_channel_t * channel,
static void set_transforms(volatile struct jr3_channel *channel,
transform_t transf, short num)
{
int i;
Expand All @@ -205,17 +205,17 @@ static void set_transforms(volatile jr3_channel_t * channel,
}
}

static void use_transform(volatile jr3_channel_t * channel, short transf_num)
static void use_transform(volatile struct jr3_channel *channel, short transf_num)
{
set_s16(&channel->command_word0, 0x0500 + (transf_num & 0x000f));
}

static void use_offset(volatile jr3_channel_t * channel, short offset_num)
static void use_offset(volatile struct jr3_channel *channel, short offset_num)
{
set_s16(&channel->command_word0, 0x0600 + (offset_num & 0x000f));
}

static void set_offset(volatile jr3_channel_t * channel)
static void set_offset(volatile struct jr3_channel *channel)
{
set_s16(&channel->command_word0, 0x0700);
}
Expand All @@ -229,7 +229,7 @@ typedef struct {
s16 mz;
} six_axis_t;

static void set_full_scales(volatile jr3_channel_t * channel,
static void set_full_scales(volatile struct jr3_channel *channel,
six_axis_t full_scale)
{
printk("%d %d %d %d %d %d\n",
Expand All @@ -245,7 +245,7 @@ static void set_full_scales(volatile jr3_channel_t * channel,
set_s16(&channel->command_word0, 0x0a00);
}

static six_axis_t get_min_full_scales(volatile jr3_channel_t * channel)
static six_axis_t get_min_full_scales(volatile struct jr3_channel *channel)
{
six_axis_t result;
result.fx = get_s16(&channel->min_full_scale.fx);
Expand All @@ -257,7 +257,7 @@ static six_axis_t get_min_full_scales(volatile jr3_channel_t * channel)
return result;
}

static six_axis_t get_max_full_scales(volatile jr3_channel_t * channel)
static six_axis_t get_max_full_scales(volatile struct jr3_channel *channel)
{
six_axis_t result;
result.fx = get_s16(&channel->max_full_scale.fx);
Expand Down Expand Up @@ -529,7 +529,7 @@ static poll_delay_t jr3_pci_poll_subdevice(struct comedi_subdevice * s)
jr3_pci_subdev_private *p = s->private;

if (p) {
volatile jr3_channel_t *channel = p->channel;
volatile struct jr3_channel *channel = p->channel;
int errors = get_u16(&channel->errors);

if (errors != p->errors) {
Expand Down Expand Up @@ -782,9 +782,9 @@ static int jr3_pci_attach(struct comedi_device * dev, struct comedi_devconfig *
opt_bus = it->options[0];
opt_slot = it->options[1];

if (sizeof(jr3_channel_t) != 0xc00) {
printk("sizeof(jr3_channel_t) = %x [expected %x]\n",
(unsigned)sizeof(jr3_channel_t), 0xc00);
if (sizeof(struct jr3_channel) != 0xc00) {
printk("sizeof(struct jr3_channel) = %x [expected %x]\n",
(unsigned)sizeof(struct jr3_channel), 0xc00);
return -EINVAL;
}

Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/staging/comedi/drivers/jr3_pci.h
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ struct intern_transform {
/* JR3 force/torque sensor data definition. For more information see sensor and */
/* hardware manuals. */

typedef struct force_sensor_data {
struct jr3_channel {
/* Raw_channels is the area used to store the raw data coming from */
/* the sensor. */

Expand Down Expand Up @@ -667,12 +667,12 @@ typedef struct force_sensor_data {
*/

struct intern_transform transforms[0x10]; /* offset 0x0200 */
} jr3_channel_t;
};

struct jr3_t {
struct {
u32 program_low[0x4000]; /* 0x00000 - 0x10000 */
jr3_channel_t data; /* 0x10000 - 0x10c00 */
struct jr3_channel data; /* 0x10000 - 0x10c00 */
char pad2[0x30000 - 0x00c00]; /* 0x10c00 - 0x40000 */
u32 program_high[0x8000]; /* 0x40000 - 0x60000 */
u32 reset; /* 0x60000 - 0x60004 */
Expand Down

0 comments on commit 328bc95

Please sign in to comment.