Skip to content

Commit

Permalink
Staging: comedi: Remove ni_65xx_subdevice_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 47c30a2 commit 6179e3e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions drivers/staging/comedi/drivers/ni_65xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,17 +295,18 @@ static inline struct ni_65xx_private *private(struct comedi_device * dev)
return dev->private;
}

typedef struct {
struct ni_65xx_subdevice_private {
unsigned base_port;
} ni_65xx_subdevice_private;
static inline ni_65xx_subdevice_private *sprivate(struct comedi_subdevice * subdev)
};

static inline struct ni_65xx_subdevice_private *sprivate(struct comedi_subdevice * subdev)
{
return subdev->private;
}
static ni_65xx_subdevice_private *ni_65xx_alloc_subdevice_private(void)
static struct ni_65xx_subdevice_private *ni_65xx_alloc_subdevice_private(void)
{
ni_65xx_subdevice_private *subdev_private =
kzalloc(sizeof(ni_65xx_subdevice_private), GFP_KERNEL);
struct ni_65xx_subdevice_private *subdev_private =
kzalloc(sizeof(struct ni_65xx_subdevice_private), GFP_KERNEL);
if (subdev_private == NULL)
return NULL;
return subdev_private;
Expand Down

0 comments on commit 6179e3e

Please sign in to comment.