]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
staging: comedi: pcl730: rename the boardinfo table
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Thu, 6 Jun 2013 00:49:37 +0000 (17:49 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 6 Jun 2013 19:09:16 +0000 (12:09 -0700)
Rename the boardinfo table so it has namespace associated with the
driver.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/pcl730.c

index 082020cd82d15462673dcb8befb5a03e530f5d6f..9687ad2e12f6c1c61f094541bb2da6d6e8378cdf 100644 (file)
@@ -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);