Commit 1308a487 authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman

staging: comedi: 8255_pci: rewrite comedi driver comment block

Rewrite the comedi "driver" comment block to conform to the usual format
for comedi driver comment blocks and reformat it to use the usual block
comment style.  In particular, the "Devices:" line should be a
comma-separated list where the first item is in the following format:

  [Manufacturer] BOARD-NAME (comedi-board-name)

The "[Manufacturer]" and/or "(comedi-board-name)" parts may be omitted
from following items, in which case the parts from the preceding item
are used.  The "Devices:" line may be continued continued over several
lines by using one or more spaces at the start of each continuation line
(not counting the space after the "*" in the block comment).

The original comment indicated the number of DIO channels in each item
on the "Devices:" line.  Move this information into separate paragraphs.
Signed-off-by: default avatarIan Abbott <abbotti@mev.co.uk>
Reviewed-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fc1964a5
...@@ -22,33 +22,44 @@ ...@@ -22,33 +22,44 @@
*/ */
/* /*
Driver: 8255_pci * Driver: 8255_pci
Description: Generic PCI based 8255 Digital I/O boards * Description: Generic PCI based 8255 Digital I/O boards
Devices: (ADLink) PCI-7224 [adl_pci-7224] - 24 channels * Devices: [ADLink] PCI-7224 (adl_pci-7224), PCI-7248 (adl_pci-7248),
(ADLink) PCI-7248 [adl_pci-7248] - 48 channels * PCI-7296 (adl_pci-7296),
(ADLink) PCI-7296 [adl_pci-7296] - 96 channels * [Measurement Computing] PCI-DIO24 (cb_pci-dio24),
(Measurement Computing) PCI-DIO24 [cb_pci-dio24] - 24 channels * PCI-DIO24H (cb_pci-dio24h), PCI-DIO48H (cb_pci-dio48h),
(Measurement Computing) PCI-DIO24H [cb_pci-dio24h] - 24 channels * PCI-DIO96H (cb_pci-dio96h),
(Measurement Computing) PCI-DIO48H [cb_pci-dio48h] - 48 channels * [National Instruments] PCI-DIO-96 (ni_pci-dio-96),
(Measurement Computing) PCI-DIO96H [cb_pci-dio96h] - 96 channels * PCI-DIO-96B (ni_pci-dio-96b), PXI-6508 (ni_pxi-6508),
(National Instruments) PCI-DIO-96 [ni_pci-dio-96] - 96 channels * PCI-6503 (ni_pci-6503), PCI-6503B (ni_pci-6503b),
(National Instruments) PCI-DIO-96B [ni_pci-dio-96b] - 96 channels * PCI-6503X (ni_pci-6503x), PXI-6503 (ni_pxi-6503)
(National Instruments) PXI-6508 [ni_pxi-6508] - 96 channels * Author: H Hartley Sweeten <hsweeten@visionengravers.com>
(National Instruments) PCI-6503 [ni_pci-6503] - 24 channels * Updated: Wed, 12 Sep 2012 11:52:01 -0700
(National Instruments) PCI-6503B [ni_pci-6503b] - 24 channels * Status: untested
(National Instruments) PCI-6503X [ni_pci-6503x] - 24 channels *
(National Instruments) PXI-6503 [ni_pxi-6503] - 24 channels * These boards have one or more 8255 digital I/O chips, each of which
Author: H Hartley Sweeten <hsweeten@visionengravers.com> * is supported as a separate 24-channel DIO subdevice.
Updated: Wed, 12 Sep 2012 11:52:01 -0700 *
Status: untested * Boards with 24 DIO channels (1 DIO subdevice):
*
Some of these boards also have an 8254 programmable timer/counter * PCI-7224, PCI-DIO24, PCI-DIO24H, PCI-6503, PCI-6503B, PCI-6503X,
chip. This chip is not currently supported by this driver. * PXI-6503
*
Interrupt support for these boards is also not currently supported. * Boards with 48 DIO channels (2 DIO subdevices):
*
Configuration Options: not applicable, uses PCI auto config * PCI-7248, PCI-DIO48H
*/ *
* Boards with 96 DIO channels (4 DIO subdevices):
*
* PCI-7296, PCI-DIO96H, PCI-DIO-96, PCI-DIO-96B, PXI-6508
*
* Some of these boards also have an 8254 programmable timer/counter
* chip. This chip is not currently supported by this driver.
*
* Interrupt support for these boards is also not currently supported.
*
* Configuration Options: not applicable, uses PCI auto config.
*/
#include <linux/module.h> #include <linux/module.h>
#include <linux/pci.h> #include <linux/pci.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment