Staging: comedi: Remove ni_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
8ab41df0d7
commit
3301cc7665
@@ -276,10 +276,12 @@ static const int ni_irqpin[] =
|
|||||||
|
|
||||||
#define NI_E_IRQ_FLAGS 0
|
#define NI_E_IRQ_FLAGS 0
|
||||||
|
|
||||||
typedef struct {
|
struct ni_private {
|
||||||
struct pnp_dev *isapnp_dev;
|
struct pnp_dev *isapnp_dev;
|
||||||
NI_PRIVATE_COMMON} ni_private;
|
NI_PRIVATE_COMMON
|
||||||
#define devpriv ((ni_private *)dev->private)
|
};
|
||||||
|
|
||||||
|
#define devpriv ((struct ni_private *)dev->private)
|
||||||
|
|
||||||
/* How we access registers */
|
/* How we access registers */
|
||||||
|
|
||||||
|
@@ -4278,7 +4278,7 @@ static int ni_alloc_private(struct comedi_device * dev)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = alloc_private(dev, sizeof(ni_private));
|
ret = alloc_private(dev, sizeof(struct ni_private));
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@@ -1218,9 +1218,11 @@ static struct comedi_driver driver_pcimio = {
|
|||||||
|
|
||||||
COMEDI_PCI_INITCLEANUP(driver_pcimio, ni_pci_table)
|
COMEDI_PCI_INITCLEANUP(driver_pcimio, ni_pci_table)
|
||||||
|
|
||||||
typedef struct {
|
struct ni_private {
|
||||||
NI_PRIVATE_COMMON} ni_private;
|
NI_PRIVATE_COMMON
|
||||||
#define devpriv ((ni_private *)dev->private)
|
};
|
||||||
|
|
||||||
|
#define devpriv ((struct ni_private *)dev->private)
|
||||||
|
|
||||||
/* How we access registers */
|
/* How we access registers */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user