Skip to content

Commit

Permalink
Staging: comedi: Remove pci9118_private typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 193a21e commit 5b5fc21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/comedi/drivers/adl_pci9118.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static struct comedi_driver driver_pci9118 = {

COMEDI_PCI_INITCLEANUP(driver_pci9118, pci9118_pci_table);

typedef struct {
struct pci9118_private {
unsigned long iobase_a; // base+size for AMCC chip
unsigned int master; // master capable
struct pci_dev *pcidev; // ptr to actual pcidev
Expand Down Expand Up @@ -299,9 +299,9 @@ typedef struct {
unsigned int ai_maskerr; // which warning was printed
unsigned int ai_maskharderr; // on which error bits stops
unsigned int ai_inttrig_start; // TRIG_INT for start
} pci9118_private;
};

#define devpriv ((pci9118_private *)dev->private)
#define devpriv ((struct pci9118_private *)dev->private)
#define this_board ((struct boardtype *)dev->board_ptr)

/*
Expand Down Expand Up @@ -1859,7 +1859,7 @@ static int pci9118_attach(struct comedi_device * dev, struct comedi_devconfig *
master = 1;
}

if ((ret = alloc_private(dev, sizeof(pci9118_private))) < 0) {
if ((ret = alloc_private(dev, sizeof(struct pci9118_private))) < 0) {
rt_printk(" - Allocation failed!\n");
return -ENOMEM;
}
Expand Down

0 comments on commit 5b5fc21

Please sign in to comment.