staging: comedi: pcmuio: tidy up the boardinfo
Remove the boilerplate comment about the boardinfo struct. For aesthetic reasons, move the boardinfo declaration near the struct definition. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
288201328b
commit
fbe3bb17b9
@ -145,11 +145,6 @@
|
|||||||
#define PAGE_ENAB 2
|
#define PAGE_ENAB 2
|
||||||
#define PAGE_INT_ID 3
|
#define PAGE_INT_ID 3
|
||||||
|
|
||||||
/*
|
|
||||||
* Board descriptions for two imaginary boards. Describing the
|
|
||||||
* boards in this way is optional, and completely driver-dependent.
|
|
||||||
* Some drivers use arrays such as this, other do not.
|
|
||||||
*/
|
|
||||||
struct pcmuio_board {
|
struct pcmuio_board {
|
||||||
const char *name;
|
const char *name;
|
||||||
const int num_asics;
|
const int num_asics;
|
||||||
@ -157,6 +152,18 @@ struct pcmuio_board {
|
|||||||
const int num_ports;
|
const int num_ports;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct pcmuio_board pcmuio_boards[] = {
|
||||||
|
{
|
||||||
|
.name = "pcmuio48",
|
||||||
|
.num_asics = 1,
|
||||||
|
.num_ports = 6,
|
||||||
|
}, {
|
||||||
|
.name = "pcmuio96",
|
||||||
|
.num_asics = 2,
|
||||||
|
.num_ports = 12,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
/* this structure is for data unique to this subdevice. */
|
/* this structure is for data unique to this subdevice. */
|
||||||
struct pcmuio_subdev_private {
|
struct pcmuio_subdev_private {
|
||||||
/* mapping of halfwords (bytes) in port/chanarray to iobase */
|
/* mapping of halfwords (bytes) in port/chanarray to iobase */
|
||||||
@ -934,18 +941,6 @@ static void pcmuio_detach(struct comedi_device *dev)
|
|||||||
comedi_legacy_detach(dev);
|
comedi_legacy_detach(dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct pcmuio_board pcmuio_boards[] = {
|
|
||||||
{
|
|
||||||
.name = "pcmuio48",
|
|
||||||
.num_asics = 1,
|
|
||||||
.num_ports = 6,
|
|
||||||
}, {
|
|
||||||
.name = "pcmuio96",
|
|
||||||
.num_asics = 2,
|
|
||||||
.num_ports = 12,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct comedi_driver pcmuio_driver = {
|
static struct comedi_driver pcmuio_driver = {
|
||||||
.driver_name = "pcmuio",
|
.driver_name = "pcmuio",
|
||||||
.module = THIS_MODULE,
|
.module = THIS_MODULE,
|
||||||
|
Loading…
Reference in New Issue
Block a user