Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 056d3ce5 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: comedi: set PCI and PCMCIA defines



The comedi drivers are looking for CONFIG_COMEDI_PCI and
CONFIG_COMEDI_PCMCIA, not the current config items.  This creates a
define so that things build properly when these options are selected.
Long term goal is to fix up the drivers to not need any defines.

Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 72a82280
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -525,4 +525,17 @@ void comedi_usb_auto_unconfig(struct usb_device *usbdev);

#include "comedi_rt.h"

#ifdef CONFIG_COMEDI_PCI_DRIVERS
	#define CONFIG_COMEDI_PCI
#endif
#ifdef CONFIG_COMEDI_PCI_DRIVERS_MODULE
	#define CONFIG_COMEDI_PCI
#endif
#ifdef CONFIG_COMEDI_PCMCIA_DRIVERS
	#define CONFIG_COMEDI_PCMCIA
#endif
#ifdef CONFIG_COMEDI_PCMCIA_DRIVERS_MODULE
	#define CONFIG_COMEDI_PCMCIA
#endif

#endif /* _COMEDIDEV_H */