Staging: comedi: das800: Remove das800_board typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b90c76fd78
commit
938f185d4e
@@ -232,15 +232,15 @@ static const struct das800_board das800_boards[] = {
|
|||||||
*/
|
*/
|
||||||
#define thisboard ((const struct das800_board *)dev->board_ptr)
|
#define thisboard ((const struct das800_board *)dev->board_ptr)
|
||||||
|
|
||||||
typedef struct {
|
struct das800_private {
|
||||||
volatile unsigned int count; /* number of data points left to be taken */
|
volatile unsigned int count; /* number of data points left to be taken */
|
||||||
volatile int forever; /* flag indicating whether we should take data forever */
|
volatile int forever; /* flag indicating whether we should take data forever */
|
||||||
unsigned int divisor1; /* value to load into board's counter 1 for timed conversions */
|
unsigned int divisor1; /* value to load into board's counter 1 for timed conversions */
|
||||||
unsigned int divisor2; /* value to load into board's counter 2 for timed conversions */
|
unsigned int divisor2; /* value to load into board's counter 2 for timed conversions */
|
||||||
volatile int do_bits; /* digital output bits */
|
volatile int do_bits; /* digital output bits */
|
||||||
} das800_private;
|
};
|
||||||
|
|
||||||
#define devpriv ((das800_private *)dev->private)
|
#define devpriv ((struct das800_private *)dev->private)
|
||||||
|
|
||||||
static int das800_attach(struct comedi_device * dev, struct comedi_devconfig * it);
|
static int das800_attach(struct comedi_device * dev, struct comedi_devconfig * it);
|
||||||
static int das800_detach(struct comedi_device * dev);
|
static int das800_detach(struct comedi_device * dev);
|
||||||
@@ -456,7 +456,7 @@ static int das800_attach(struct comedi_device * dev, struct comedi_devconfig * i
|
|||||||
printk("\n");
|
printk("\n");
|
||||||
|
|
||||||
/* allocate and initialize dev->private */
|
/* allocate and initialize dev->private */
|
||||||
if (alloc_private(dev, sizeof(das800_private)) < 0)
|
if (alloc_private(dev, sizeof(struct das800_private)) < 0)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
if (iobase == 0) {
|
if (iobase == 0) {
|
||||||
|
Reference in New Issue
Block a user