Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 25602bd7 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: ni_daq_dio24: move comedi_driver declaration



Move the comedi_driver declaration down in the file. This removes
the need for the forward declarations.

For aesthetic reasons, add some whitespace to the declaration.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 11221501
Loading
Loading
Loading
Loading
+10 −13
Original line number Original line Diff line number Diff line
@@ -56,9 +56,6 @@ static struct pcmcia_device *pcmcia_cur_dev;


#define DIO24_SIZE 4		/*  size of io region used by board */
#define DIO24_SIZE 4		/*  size of io region used by board */


static int dio24_attach(struct comedi_device *dev, struct comedi_devconfig *it);
static void dio24_detach(struct comedi_device *dev);

enum dio24_bustype { pcmcia_bustype };
enum dio24_bustype { pcmcia_bustype };


struct dio24_board_struct {
struct dio24_board_struct {
@@ -96,16 +93,6 @@ struct dio24_private {
	int data;		/* number of data points left to be taken */
	int data;		/* number of data points left to be taken */
};
};


static struct comedi_driver driver_dio24 = {
	.driver_name = "ni_daq_dio24",
	.module = THIS_MODULE,
	.attach = dio24_attach,
	.detach = dio24_detach,
	.num_names = ARRAY_SIZE(dio24_boards),
	.board_name = &dio24_boards[0].name,
	.offset = sizeof(struct dio24_board_struct),
};

static int dio24_attach(struct comedi_device *dev, struct comedi_devconfig *it)
static int dio24_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{
{
	struct dio24_private *devpriv;
	struct dio24_private *devpriv;
@@ -184,6 +171,16 @@ static void dio24_detach(struct comedi_device *dev)
		free_irq(dev->irq, dev);
		free_irq(dev->irq, dev);
};
};


static struct comedi_driver driver_dio24 = {
	.driver_name	= "ni_daq_dio24",
	.module		= THIS_MODULE,
	.attach		= dio24_attach,
	.detach		= dio24_detach,
	.num_names	= ARRAY_SIZE(dio24_boards),
	.board_name	= &dio24_boards[0].name,
	.offset		= sizeof(struct dio24_board_struct),
};

static int dio24_pcmcia_config_loop(struct pcmcia_device *p_dev,
static int dio24_pcmcia_config_loop(struct pcmcia_device *p_dev,
				    void *priv_data)
				    void *priv_data)
{
{