mirror of https://gitee.com/openkylin/linux.git
staging: comedi: adl_pci9111: tidy up multi-line comments
Reformat the multi-line comments in the kernel CodingStyle. Remove the unnecessary CHANGELOG information, git provided this better. 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
68e412987c
commit
262a07acc6
|
@ -1,68 +1,52 @@
|
||||||
/*
|
/*
|
||||||
|
* adl_pci9111.c
|
||||||
comedi/drivers/adl_pci9111.c
|
* Hardware driver for PCI9111 ADLink cards: PCI-9111HR
|
||||||
|
* Copyright (C) 2002-2005 Emmanuel Pacaud <emmanuel.pacaud@univ-poitiers.fr>
|
||||||
Hardware driver for PCI9111 ADLink cards:
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
PCI-9111HR
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
Copyright (C) 2002-2005 Emmanuel Pacaud <emmanuel.pacaud@univ-poitiers.fr>
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
This program is free software; you can redistribute it and/or modify
|
* This program is distributed in the hope that it will be useful,
|
||||||
it under the terms of the GNU General Public License as published by
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
(at your option) any later version.
|
* GNU General Public License for more details.
|
||||||
|
*/
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Driver: adl_pci9111
|
* Driver: adl_pci9111
|
||||||
Description: Adlink PCI-9111HR
|
* Description: Adlink PCI-9111HR
|
||||||
Author: Emmanuel Pacaud <emmanuel.pacaud@univ-poitiers.fr>
|
* Devices: [ADLink] PCI-9111HR (adl_pci9111)
|
||||||
Devices: [ADLink] PCI-9111HR (adl_pci9111)
|
* Author: Emmanuel Pacaud <emmanuel.pacaud@univ-poitiers.fr>
|
||||||
Status: experimental
|
* Status: experimental
|
||||||
|
*
|
||||||
Supports:
|
* Configuration options: not applicable, uses PCI auto config
|
||||||
|
*
|
||||||
- ai_insn read
|
* Supports:
|
||||||
- ao_insn read/write
|
* - ai_insn read
|
||||||
- di_insn read
|
* - ao_insn read/write
|
||||||
- do_insn read/write
|
* - di_insn read
|
||||||
- ai_do_cmd mode with the following sources:
|
* - do_insn read/write
|
||||||
|
* - ai_do_cmd mode with the following sources:
|
||||||
- start_src TRIG_NOW
|
* - start_src TRIG_NOW
|
||||||
- scan_begin_src TRIG_FOLLOW TRIG_TIMER TRIG_EXT
|
* - scan_begin_src TRIG_FOLLOW TRIG_TIMER TRIG_EXT
|
||||||
- convert_src TRIG_TIMER TRIG_EXT
|
* - convert_src TRIG_TIMER TRIG_EXT
|
||||||
- scan_end_src TRIG_COUNT
|
* - scan_end_src TRIG_COUNT
|
||||||
- stop_src TRIG_COUNT TRIG_NONE
|
* - stop_src TRIG_COUNT TRIG_NONE
|
||||||
|
*
|
||||||
The scanned channels must be consecutive and start from 0. They must
|
* The scanned channels must be consecutive and start from 0. They must
|
||||||
all have the same range and aref.
|
* all have the same range and aref.
|
||||||
|
*/
|
||||||
Configuration options: not applicable, uses PCI auto config
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
CHANGELOG:
|
* TODO:
|
||||||
|
* - Really test implemented functionality.
|
||||||
2005/02/17 Extend AI streaming capabilities. Now, scan_begin_arg can be
|
* - Add support for the PCI-9111DG with a probe routine to identify
|
||||||
a multiple of chanlist_len*convert_arg.
|
* the card type (perhaps with the help of the channel number readback
|
||||||
2002/02/19 Fixed the two's complement conversion in pci9111_(hr_)ai_get_data.
|
* of the A/D Data register).
|
||||||
2002/02/18 Added external trigger support for analog input.
|
* - Add external multiplexer support.
|
||||||
|
*/
|
||||||
TODO:
|
|
||||||
|
|
||||||
- Really test implemented functionality.
|
|
||||||
- Add support for the PCI-9111DG with a probe routine to identify
|
|
||||||
the card type (perhaps with the help of the channel number readback
|
|
||||||
of the A/D Data register).
|
|
||||||
- Add external multiplexer support.
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
|
|
Loading…
Reference in New Issue