-
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: conditionally build in PCMCIA driver support
Separate the comedi_pcmcia_* functions out of drivers.c into a new source file, comedi_pcmcia.c. This allows conditionally building support for comedi pcmcia drivers into the comedi core without the need for the #if'defery. Fix the Kconfig and Makefile appropriately. Group all the comedi_pcmcia_* prototypes into one place in comedidev.h. Protect these prototypes with an #ifdef so that building a comedi pcmcia driver without PCMCIA support will cause a build error. This will normally not happen as long as the comedi pcmcia driver is placed in the proper group in the Kconfig. Remove the #include <pcmcia/*.h> from drivers.c. These includes are only needed by the comedi pcmcia driver support code and the pcmcia drivers. The include should occur in those files. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
H Hartley Sweeten
authored and
Greg Kroah-Hartman
committed
Jan 31, 2013
1 parent
33782dd
commit 309231d
Showing
5 changed files
with
102 additions
and
58 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
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
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* comedi_pcmcia.c | ||
* Comedi PCMCIA driver specific functions. | ||
* | ||
* COMEDI - Linux Control and Measurement Device Interface | ||
* Copyright (C) 1997-2000 David A. Schleef <ds@schleef.org> | ||
* | ||
* 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. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
|
||
#include <pcmcia/cistpl.h> | ||
#include <pcmcia/ds.h> | ||
|
||
#include "comedidev.h" | ||
|
||
/** | ||
* comedi_pcmcia_driver_register() - Register a comedi PCMCIA driver. | ||
* @comedi_driver: comedi_driver struct | ||
* @pcmcia_driver: pcmcia_driver struct | ||
* | ||
* This function is used for the module_init() of comedi USB drivers. | ||
* Do not call it directly, use the module_comedi_pcmcia_driver() helper | ||
* macro instead. | ||
*/ | ||
int comedi_pcmcia_driver_register(struct comedi_driver *comedi_driver, | ||
struct pcmcia_driver *pcmcia_driver) | ||
{ | ||
int ret; | ||
|
||
ret = comedi_driver_register(comedi_driver); | ||
if (ret < 0) | ||
return ret; | ||
|
||
ret = pcmcia_register_driver(pcmcia_driver); | ||
if (ret < 0) { | ||
comedi_driver_unregister(comedi_driver); | ||
return ret; | ||
} | ||
|
||
return 0; | ||
} | ||
EXPORT_SYMBOL_GPL(comedi_pcmcia_driver_register); | ||
|
||
/** | ||
* comedi_pcmcia_driver_unregister() - Unregister a comedi PCMCIA driver. | ||
* @comedi_driver: comedi_driver struct | ||
* @pcmcia_driver: pcmcia_driver struct | ||
* | ||
* This function is used for the module_exit() of comedi PCMCIA drivers. | ||
* Do not call it directly, use the module_comedi_pcmcia_driver() helper | ||
* macro instead. | ||
*/ | ||
void comedi_pcmcia_driver_unregister(struct comedi_driver *comedi_driver, | ||
struct pcmcia_driver *pcmcia_driver) | ||
{ | ||
pcmcia_unregister_driver(pcmcia_driver); | ||
comedi_driver_unregister(comedi_driver); | ||
} | ||
EXPORT_SYMBOL_GPL(comedi_pcmcia_driver_unregister); |
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
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