Skip to content

Commit

Permalink
Staging: comedi: Remove adl_pci7296_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 3d393c8 commit 8dca707
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/staging/comedi/drivers/adl_pci7296.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,13 @@ static DEFINE_PCI_DEVICE_TABLE(adl_pci7296_pci_table) = {

MODULE_DEVICE_TABLE(pci, adl_pci7296_pci_table);

typedef struct {
struct adl_pci7296_private {
int data;
struct pci_dev *pci_dev;
} adl_pci7296_private;
};


#define devpriv ((adl_pci7296_private *)dev->private)
#define devpriv ((struct adl_pci7296_private *)dev->private)

static int adl_pci7296_attach(struct comedi_device * dev, struct comedi_devconfig * it);
static int adl_pci7296_detach(struct comedi_device * dev);
Expand All @@ -86,7 +87,7 @@ static int adl_pci7296_attach(struct comedi_device * dev, struct comedi_devconfi
bus = it->options[0];
slot = it->options[1];

if (alloc_private(dev, sizeof(adl_pci7296_private)) < 0)
if (alloc_private(dev, sizeof(struct adl_pci7296_private)) < 0)
return -ENOMEM;

if (alloc_subdevices(dev, 4) < 0)
Expand Down

0 comments on commit 8dca707

Please sign in to comment.