staging: comedi: pcl726: rename 'boardtypes'
'boardtypes' is pretty generic, rename this static const variable. 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
71e460d270
commit
1b0ef827d9
1 changed files with 3 additions and 3 deletions
|
@ -115,7 +115,7 @@ struct pcl726_board {
|
|||
unsigned int is_pcl727:1;
|
||||
};
|
||||
|
||||
static const struct pcl726_board boardtypes[] = {
|
||||
static const struct pcl726_board pcl726_boards[] = {
|
||||
{
|
||||
.name = "pcl726",
|
||||
.io_len = 0x10,
|
||||
|
@ -443,8 +443,8 @@ static struct comedi_driver pcl726_driver = {
|
|||
.module = THIS_MODULE,
|
||||
.attach = pcl726_attach,
|
||||
.detach = comedi_legacy_detach,
|
||||
.board_name = &boardtypes[0].name,
|
||||
.num_names = ARRAY_SIZE(boardtypes),
|
||||
.board_name = &pcl726_boards[0].name,
|
||||
.num_names = ARRAY_SIZE(pcl726_boards),
|
||||
.offset = sizeof(struct pcl726_board),
|
||||
};
|
||||
module_comedi_driver(pcl726_driver);
|
||||
|
|
Loading…
Add table
Reference in a new issue