Staging: comedi: Remove a2150_private 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
8ce8a1fff2
commit
3cc3872bbd
@@ -156,16 +156,18 @@ static const a2150_board a2150_boards[] = {
|
|||||||
*/
|
*/
|
||||||
#define thisboard ((const a2150_board *)dev->board_ptr)
|
#define thisboard ((const a2150_board *)dev->board_ptr)
|
||||||
|
|
||||||
typedef struct {
|
struct a2150_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 */
|
||||||
unsigned int dma; // dma channel
|
unsigned int dma; // dma channel
|
||||||
s16 *dma_buffer; // dma buffer
|
s16 *dma_buffer; // dma buffer
|
||||||
unsigned int dma_transfer_size; // size in bytes of dma transfers
|
unsigned int dma_transfer_size; // size in bytes of dma transfers
|
||||||
int irq_dma_bits; // irq/dma register bits
|
int irq_dma_bits; // irq/dma register bits
|
||||||
int config_bits; // config register bits
|
int config_bits; // config register bits
|
||||||
} a2150_private;
|
};
|
||||||
|
|
||||||
#define devpriv ((a2150_private *)dev->private)
|
|
||||||
|
#define devpriv ((struct a2150_private *)dev->private)
|
||||||
|
|
||||||
static int a2150_attach(struct comedi_device * dev, struct comedi_devconfig * it);
|
static int a2150_attach(struct comedi_device * dev, struct comedi_devconfig * it);
|
||||||
static int a2150_detach(struct comedi_device * dev);
|
static int a2150_detach(struct comedi_device * dev);
|
||||||
@@ -346,7 +348,7 @@ static int a2150_attach(struct comedi_device * dev, struct comedi_devconfig * it
|
|||||||
printk("\n");
|
printk("\n");
|
||||||
|
|
||||||
/* allocate and initialize dev->private */
|
/* allocate and initialize dev->private */
|
||||||
if (alloc_private(dev, sizeof(a2150_private)) < 0)
|
if (alloc_private(dev, sizeof(struct a2150_private)) < 0)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
if (iobase == 0) {
|
if (iobase == 0) {
|
||||||
|
Reference in New Issue
Block a user