staging: comedi: dt2811: rename 'boardtypes'
Rename this array so it has namespace associated with the driver. 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
a426744c74
commit
9910131ceb
|
@ -173,7 +173,7 @@ struct dt2811_board {
|
||||||
unsigned int is_pgh:1;
|
unsigned int is_pgh:1;
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct dt2811_board boardtypes[] = {
|
static const struct dt2811_board dt2811_boards[] = {
|
||||||
{
|
{
|
||||||
.name = "dt2811-pgh",
|
.name = "dt2811-pgh",
|
||||||
.is_pgh = 1,
|
.is_pgh = 1,
|
||||||
|
@ -334,8 +334,8 @@ static struct comedi_driver dt2811_driver = {
|
||||||
.module = THIS_MODULE,
|
.module = THIS_MODULE,
|
||||||
.attach = dt2811_attach,
|
.attach = dt2811_attach,
|
||||||
.detach = comedi_legacy_detach,
|
.detach = comedi_legacy_detach,
|
||||||
.board_name = &boardtypes[0].name,
|
.board_name = &dt2811_boards[0].name,
|
||||||
.num_names = ARRAY_SIZE(boardtypes),
|
.num_names = ARRAY_SIZE(dt2811_boards),
|
||||||
.offset = sizeof(struct dt2811_board),
|
.offset = sizeof(struct dt2811_board),
|
||||||
};
|
};
|
||||||
module_comedi_driver(dt2811_driver);
|
module_comedi_driver(dt2811_driver);
|
||||||
|
|
Loading…
Reference in New Issue