staging: comedi: pcl711: tidy up multi line comments
Tidy up the multi line comments to follow the CodingStyle. Remove the multi line comment about an alternate driver for the PCL-711. The http address does not work and the driver history in the comment is unnecessary. 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:
parent
102e95cd2a
commit
34833558ef
1 changed files with 33 additions and 49 deletions
|
@ -1,56 +1,40 @@
|
||||||
/*
|
/*
|
||||||
comedi/drivers/pcl711.c
|
* pcl711.c
|
||||||
hardware driver for PC-LabCard PCL-711 and AdSys ACL-8112
|
* Comedi driver for PC-LabCard PCL-711 and AdSys ACL-8112 and compatibles
|
||||||
and compatibles
|
* Copyright (C) 1998 David A. Schleef <ds@schleef.org>
|
||||||
|
* Janne Jalkanen <jalkanen@cs.hut.fi>
|
||||||
COMEDI - Linux Control and Measurement Device Interface
|
* Eric Bunn <ebu@cs.hut.fi>
|
||||||
Copyright (C) 1998 David A. Schleef <ds@schleef.org>
|
*
|
||||||
Janne Jalkanen <jalkanen@cs.hut.fi>
|
* COMEDI - Linux Control and Measurement Device Interface
|
||||||
Eric Bunn <ebu@cs.hut.fi>
|
* Copyright (C) 1998 David A. Schleef <ds@schleef.org>
|
||||||
|
*
|
||||||
This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
(at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
/*
|
|
||||||
Driver: pcl711
|
|
||||||
Description: Advantech PCL-711 and 711b, ADLink ACL-8112
|
|
||||||
Author: ds, Janne Jalkanen <jalkanen@cs.hut.fi>, Eric Bunn <ebu@cs.hut.fi>
|
|
||||||
Status: mostly complete
|
|
||||||
Devices: [Advantech] PCL-711 (pcl711), PCL-711B (pcl711b),
|
|
||||||
[AdLink] ACL-8112HG (acl8112hg), ACL-8112DG (acl8112dg)
|
|
||||||
|
|
||||||
Since these boards do not have DMA or FIFOs, only immediate mode is
|
|
||||||
supported.
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Dave Andruczyk <dave@tech.buffalostate.edu> also wrote a
|
* Driver: pcl711
|
||||||
driver for the PCL-711. I used a few ideas from his driver
|
* Description: Advantech PCL-711 and 711b, ADLink ACL-8112
|
||||||
here. His driver also has more comments, if you are
|
* Devices: (Advantech) PCL-711 [pcl711]
|
||||||
interested in understanding how this driver works.
|
* (Advantech) PCL-711B [pcl711b]
|
||||||
http://tech.buffalostate.edu/~dave/driver/
|
* (AdLink) ACL-8112HG [acl8112hg]
|
||||||
|
* (AdLink) ACL-8112DG [acl8112dg]
|
||||||
The ACL-8112 driver was hacked from the sources of the PCL-711
|
* Author: David A. Schleef <ds@schleef.org>
|
||||||
driver (the 744 chip used on the 8112 is almost the same as
|
* Janne Jalkanen <jalkanen@cs.hut.fi>
|
||||||
the 711b chip, but it has more I/O channels) by
|
* Eric Bunn <ebu@cs.hut.fi>
|
||||||
Janne Jalkanen (jalkanen@cs.hut.fi) and
|
* Updated:
|
||||||
Erik Bunn (ebu@cs.hut.fi). Remerged with the PCL-711 driver
|
* Status: mostly complete
|
||||||
by ds.
|
*
|
||||||
|
* Configuration Options:
|
||||||
[acl-8112]
|
* [0] - I/O port base
|
||||||
This driver supports both TRIGNOW and TRIGCLK,
|
* [1] - IRQ, optional
|
||||||
but does not yet support DMA transfers. It also supports
|
|
||||||
both high (HG) and low (DG) versions of the card, though
|
|
||||||
the HG version has been untested.
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
|
Loading…
Add table
Reference in a new issue