mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 18:13:26 -04:00
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:
committed by
Greg Kroah-Hartman
parent
71e460d270
commit
1b0ef827d9
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user