From 3e0d529c0a4d58f68b8401403a696c2853f206c0 Mon Sep 17 00:00:00 2001 From: H Hartley Sweeten Date: Wed, 5 Jun 2013 17:49:37 -0700 Subject: [PATCH] staging: comedi: pcl730: rename the boardinfo table Rename the boardinfo table so it has namespace associated with the driver. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcl730.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/comedi/drivers/pcl730.c b/drivers/staging/comedi/drivers/pcl730.c index 082020c..9687ad2 100644 --- a/drivers/staging/comedi/drivers/pcl730.c +++ b/drivers/staging/comedi/drivers/pcl730.c @@ -29,7 +29,7 @@ struct pcl730_board { unsigned int io_range; /* len of I/O space */ }; -static const struct pcl730_board boardtypes[] = { +static const struct pcl730_board pcl730_boards[] = { { .name = "pcl730", .io_range = 0x04, @@ -141,8 +141,8 @@ static struct comedi_driver pcl730_driver = { .module = THIS_MODULE, .attach = pcl730_attach, .detach = comedi_legacy_detach, - .board_name = &boardtypes[0].name, - .num_names = ARRAY_SIZE(boardtypes), + .board_name = &pcl730_boards[0].name, + .num_names = ARRAY_SIZE(pcl730_boards), .offset = sizeof(struct pcl730_board), }; module_comedi_driver(pcl730_driver); -- 2.7.4