forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
staging: comedi: ni_daq_dio24: fix block comments
Fix the checkpatch.pl issues: WARNING: Block comments use * on subsequent lines Signed-off-by: H Hartley Sweeten <[email protected]> Reviewed-by: Ian Abbott <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
1 parent
a3310f3
commit 26994fd
Showing
1 changed file
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
/* | ||
comedi/drivers/ni_daq_dio24.c | ||
Driver for National Instruments PCMCIA DAQ-Card DIO-24 | ||
Copyright (C) 2002 Daniel Vecino Castel <[email protected]> | ||
* Comedi driver for National Instruments PCMCIA DAQ-Card DIO-24 | ||
* Copyright (C) 2002 Daniel Vecino Castel <[email protected]> | ||
* | ||
* PCMCIA crap at end of file is adapted from dummy_cs.c 1.31 | ||
* 2001/08/24 12:13:13 from the pcmcia package. | ||
* The initial developer of the pcmcia dummy_cs.c code is David A. Hinds | ||
* <[email protected]>. Portions created by David A. Hinds | ||
* are Copyright (C) 1999 David A. Hinds. All Rights Reserved. | ||
* | ||
* 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 | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* 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. | ||
*/ | ||
|
||
PCMCIA crap at end of file is adapted from dummy_cs.c 1.31 | ||
2001/08/24 12:13:13 from the pcmcia package. | ||
The initial developer of the pcmcia dummy_cs.c code is David A. Hinds | ||
<[email protected]>. Portions created by David A. Hinds | ||
are Copyright (C) 1999 David A. Hinds. All Rights Reserved. | ||
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 | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
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: ni_daq_dio24 | ||
Description: National Instruments PCMCIA DAQ-Card DIO-24 | ||
Author: Daniel Vecino Castel <[email protected]> | ||
Devices: [National Instruments] PCMCIA DAQ-Card DIO-24 (ni_daq_dio24) | ||
Status: ? | ||
Updated: Thu, 07 Nov 2002 21:53:06 -0800 | ||
This is just a wrapper around the 8255.o driver to properly handle | ||
the PCMCIA interface. | ||
*/ | ||
* Driver: ni_daq_dio24 | ||
* Description: National Instruments PCMCIA DAQ-Card DIO-24 | ||
* Author: Daniel Vecino Castel <[email protected]> | ||
* Devices: [National Instruments] PCMCIA DAQ-Card DIO-24 (ni_daq_dio24) | ||
* Status: ? | ||
* Updated: Thu, 07 Nov 2002 21:53:06 -0800 | ||
* | ||
* This is just a wrapper around the 8255.o driver to properly handle | ||
* the PCMCIA interface. | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include "../comedi_pcmcia.h" | ||
|