Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141644
b: refs/heads/master
c: 97baaed
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent e3b896b commit 4ecf9b4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 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: e2b523aab1b04e7edc092588abbafa67f560deb4
refs/heads/master: 97baaedfa440fb988d8725cc9a3b16bcc12ff611
18 changes: 9 additions & 9 deletions trunk/drivers/staging/comedi/drivers/ii_pci20kc.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ options for PCI-20341M:
#define PCI20341_MUX 0x04 /* Enable on-board MUX */
#define PCI20341_SCANLIST 0x80 /* Channel/Gain Scan List */

typedef union {
union pci20xxx_subdev_private {
void *iobase;
struct {
void *iobase;
Expand All @@ -146,12 +146,12 @@ typedef union {
int settling_time;
int ai_gain;
} pci20341;
} pci20xxx_subdev_private;
};

struct pci20xxx_private {

void *ioaddr;
pci20xxx_subdev_private subdev_private[PCI20000_MODULES];
union pci20xxx_subdev_private subdev_private[PCI20000_MODULES];
};


Expand Down Expand Up @@ -207,7 +207,7 @@ static int pci20xxx_attach(struct comedi_device * dev, struct comedi_devconfig *
int ret;
int id;
struct comedi_subdevice *s;
pci20xxx_subdev_private *sdp;
union pci20xxx_subdev_private *sdp;

if ((ret = alloc_subdevices(dev, 1 + PCI20000_MODULES)) < 0)
return ret;
Expand Down Expand Up @@ -286,7 +286,7 @@ static const struct comedi_lrange *pci20006_range_list[] = {
static int pci20006_init(struct comedi_device * dev, struct comedi_subdevice * s,
int opt0, int opt1)
{
pci20xxx_subdev_private *sdp = s->private;
union pci20xxx_subdev_private *sdp = s->private;

if (opt0 < 0 || opt0 > 2)
opt0 = 0;
Expand All @@ -311,7 +311,7 @@ static int pci20006_init(struct comedi_device * dev, struct comedi_subdevice * s
static int pci20006_insn_read(struct comedi_device * dev, struct comedi_subdevice * s,
struct comedi_insn * insn, unsigned int * data)
{
pci20xxx_subdev_private *sdp = s->private;
union pci20xxx_subdev_private *sdp = s->private;

data[0] = sdp->pci20006.last_data[CR_CHAN(insn->chanspec)];

Expand All @@ -321,7 +321,7 @@ static int pci20006_insn_read(struct comedi_device * dev, struct comedi_subdevic
static int pci20006_insn_write(struct comedi_device * dev, struct comedi_subdevice * s,
struct comedi_insn * insn, unsigned int * data)
{
pci20xxx_subdev_private *sdp = s->private;
union pci20xxx_subdev_private *sdp = s->private;
int hi, lo;
unsigned int boarddata;

Expand Down Expand Up @@ -371,7 +371,7 @@ static const struct comedi_lrange *const pci20341_ranges[] = {
static int pci20341_init(struct comedi_device * dev, struct comedi_subdevice * s,
int opt0, int opt1)
{
pci20xxx_subdev_private *sdp = s->private;
union pci20xxx_subdev_private *sdp = s->private;
int option;

/* options handling */
Expand Down Expand Up @@ -402,7 +402,7 @@ static int pci20341_init(struct comedi_device * dev, struct comedi_subdevice * s
static int pci20341_insn_read(struct comedi_device * dev, struct comedi_subdevice * s,
struct comedi_insn * insn, unsigned int * data)
{
pci20xxx_subdev_private *sdp = s->private;
union pci20xxx_subdev_private *sdp = s->private;
unsigned int i = 0, j = 0;
int lo, hi;
unsigned char eoc; /* end of conversion */
Expand Down

0 comments on commit 4ecf9b4

Please sign in to comment.