]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: cb_pcidda: cleanup the boardinfo
authorH Hartley Sweeten <hartleys@visionengravers.com>
Wed, 24 Oct 2012 23:32:54 +0000 (16:32 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Oct 2012 02:35:50 +0000 (19:35 -0700)
For aesthetic reasons, add some whitespace to the boardinfo to
improve readability. Also, remove the cut-and-paste comment from
the skel 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/cb_pcidda.c

index 2af32783e00be2aa1a7fccec04b51daefa524baa..f1aa9c9431574f81e535ca97a1636cb2b7700a3a 100644 (file)
@@ -125,11 +125,6 @@ static const struct comedi_lrange cb_pcidda_ranges = {
        }
 };
 
-/*
- * Board descriptions for two imaginary boards.  Describing the
- * boards in this way is optional, and completely driver-dependent.
- * Some drivers use arrays such as this, other do not.
- */
 struct cb_pcidda_board {
        const char *name;
        unsigned short device_id;
@@ -139,41 +134,36 @@ struct cb_pcidda_board {
 
 static const struct cb_pcidda_board cb_pcidda_boards[] = {
        {
-        .name = "pci-dda02/12",
-        .device_id = PCI_DEVICE_ID_DDA02_12,
-        .ao_chans = 2,
-        .ao_bits = 12,
-        },
-       {
-        .name = "pci-dda04/12",
-        .device_id = PCI_DEVICE_ID_DDA04_12,
-        .ao_chans = 4,
-        .ao_bits = 12,
-        },
-       {
-        .name = "pci-dda08/12",
-        .device_id = PCI_DEVICE_ID_DDA08_12,
-        .ao_chans = 8,
-        .ao_bits = 12,
-        },
-       {
-        .name = "pci-dda02/16",
-        .device_id = PCI_DEVICE_ID_DDA02_16,
-        .ao_chans = 2,
-        .ao_bits = 16,
-        },
-       {
-        .name = "pci-dda04/16",
-        .device_id = PCI_DEVICE_ID_DDA04_16,
-        .ao_chans = 4,
-        .ao_bits = 16,
-        },
-       {
-        .name = "pci-dda08/16",
-        .device_id = PCI_DEVICE_ID_DDA08_16,
-        .ao_chans = 8,
-        .ao_bits = 16,
-        },
+               .name           = "pci-dda02/12",
+               .device_id      = PCI_DEVICE_ID_DDA02_12,
+               .ao_chans       = 2,
+               .ao_bits        = 12,
+       }, {
+               .name           = "pci-dda04/12",
+               .device_id      = PCI_DEVICE_ID_DDA04_12,
+               .ao_chans       = 4,
+               .ao_bits        = 12,
+       }, {
+               .name           = "pci-dda08/12",
+               .device_id      = PCI_DEVICE_ID_DDA08_12,
+               .ao_chans       = 8,
+               .ao_bits        = 12,
+       }, {
+               .name           = "pci-dda02/16",
+               .device_id      = PCI_DEVICE_ID_DDA02_16,
+               .ao_chans       = 2,
+               .ao_bits        = 16,
+       }, {
+               .name           = "pci-dda04/16",
+               .device_id      = PCI_DEVICE_ID_DDA04_16,
+               .ao_chans       = 4,
+               .ao_bits        = 16,
+       }, {
+               .name           = "pci-dda08/16",
+               .device_id      = PCI_DEVICE_ID_DDA08_16,
+               .ao_chans       = 8,
+               .ao_bits        = 16,
+       },
 };
 
 struct cb_pcidda_private {