mirror of https://gitee.com/openkylin/linux.git
staging: comedi: quatech_daqp_cs: tidy up multi-line comments
Reformat the multi-line comments in the kernel CodingStyle. 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
d9952688a3
commit
ed811a328a
|
@ -1,51 +1,43 @@
|
||||||
/*======================================================================
|
/*
|
||||||
|
* quatech_daqp_cs.c
|
||||||
comedi/drivers/quatech_daqp_cs.c
|
* Quatech DAQP PCMCIA data capture cards COMEDI client driver
|
||||||
|
* Copyright (C) 2000, 2003 Brent Baccala <baccala@freesoft.org>
|
||||||
Quatech DAQP PCMCIA data capture cards COMEDI client driver
|
* The DAQP interface code in this file is released into the public domain.
|
||||||
Copyright (C) 2000, 2003 Brent Baccala <baccala@freesoft.org>
|
*
|
||||||
The DAQP interface code in this file is released into the public domain.
|
* COMEDI - Linux Control and Measurement Device Interface
|
||||||
|
* Copyright (C) 1998 David A. Schleef <ds@schleef.org>
|
||||||
COMEDI - Linux Control and Measurement Device Interface
|
* http://www.comedi.org/
|
||||||
Copyright (C) 1998 David A. Schleef <ds@schleef.org>
|
*
|
||||||
http://www.comedi.org/
|
* Documentation for the DAQP PCMCIA cards can be found on Quatech's site:
|
||||||
|
* ftp://ftp.quatech.com/Manuals/daqp-208.pdf
|
||||||
quatech_daqp_cs.c 1.10
|
*
|
||||||
|
* This manual is for both the DAQP-208 and the DAQP-308.
|
||||||
Documentation for the DAQP PCMCIA cards can be found on Quatech's site:
|
*
|
||||||
|
* What works:
|
||||||
ftp://ftp.quatech.com/Manuals/daqp-208.pdf
|
* - A/D conversion
|
||||||
|
* - 8 channels
|
||||||
This manual is for both the DAQP-208 and the DAQP-308.
|
* - 4 gain ranges
|
||||||
|
* - ground ref or differential
|
||||||
What works:
|
* - single-shot and timed both supported
|
||||||
|
* - D/A conversion, single-shot
|
||||||
- A/D conversion
|
* - digital I/O
|
||||||
- 8 channels
|
*
|
||||||
- 4 gain ranges
|
* What doesn't:
|
||||||
- ground ref or differential
|
* - any kind of triggering - external or D/A channel 1
|
||||||
- single-shot and timed both supported
|
* - the card's optional expansion board
|
||||||
- D/A conversion, single-shot
|
* - the card's timer (for anything other than A/D conversion)
|
||||||
- digital I/O
|
* - D/A update modes other than immediate (i.e, timed)
|
||||||
|
* - fancier timing modes
|
||||||
What doesn't:
|
* - setting card's FIFO buffer thresholds to anything but default
|
||||||
|
*/
|
||||||
- any kind of triggering - external or D/A channel 1
|
|
||||||
- the card's optional expansion board
|
|
||||||
- the card's timer (for anything other than A/D conversion)
|
|
||||||
- D/A update modes other than immediate (i.e, timed)
|
|
||||||
- fancier timing modes
|
|
||||||
- setting card's FIFO buffer thresholds to anything but default
|
|
||||||
|
|
||||||
======================================================================*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Driver: quatech_daqp_cs
|
* Driver: quatech_daqp_cs
|
||||||
Description: Quatech DAQP PCMCIA data capture cards
|
* Description: Quatech DAQP PCMCIA data capture cards
|
||||||
Author: Brent Baccala <baccala@freesoft.org>
|
* Devices: [Quatech] DAQP-208 (daqp), DAQP-308
|
||||||
Status: works
|
* Author: Brent Baccala <baccala@freesoft.org>
|
||||||
Devices: [Quatech] DAQP-208 (daqp), DAQP-308
|
* Status: works
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/semaphore.h>
|
#include <linux/semaphore.h>
|
||||||
|
|
Loading…
Reference in New Issue