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

Commit 4bfa9b2e authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman
Browse files

staging: comedi: das08: Reduce conditional compilation



This code is used by some combination of the CONFIG_COMEDI_DAS08_CS,
CONFIG_COMEDI_DAS08_ISA, and CONFIG_COMEDI_DAS08_PCI and contains a lot
of conditional compilation.

Remove most of the conditional compilation, relying on the compiler to
optimize out unused static functions and data.  Use the '__maybe_unused'
tag for those functions that cause compiler warnings as a result of
this.

Also change the DO_COMEDI_DRIVER_REGISTER macro from a conditionally
defined macro to a manifest constant macro to allow it to be tested
outside the preprocessor (although this is not currently needed).

Signed-off-by: default avatarIan Abbott <abbotti@mev.co.uk>
Acked-by: default avatarRandy Dunlap <rdunlap@xenotime.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a6e51c1e
Loading
Loading
Loading
Loading
+30 −44
Original line number Diff line number Diff line
@@ -60,9 +60,9 @@

#define DRV_NAME "das08"

#if IS_ENABLED(CONFIG_COMEDI_DAS08_ISA) || IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
#define DO_COMEDI_DRIVER_REGISTER
#endif
#define DO_COMEDI_DRIVER_REGISTER \
	(IS_ENABLED(CONFIG_COMEDI_DAS08_ISA) || \
	 IS_ENABLED(CONFIG_COMEDI_DAS08_PCI))

#define PCI_VENDOR_ID_COMPUTERBOARDS 0x1307
#define PCI_DEVICE_ID_PCIDAS08 0x29
@@ -341,9 +341,8 @@ static int das08_do_wbits(struct comedi_device *dev, struct comedi_subdevice *s,
	return 2;
}

#if IS_ENABLED(CONFIG_COMEDI_DAS08_ISA)
static int das08jr_di_rbits(struct comedi_device *dev,
			    struct comedi_subdevice *s,
static int __maybe_unused
das08jr_di_rbits(struct comedi_device *dev, struct comedi_subdevice *s,
		 struct comedi_insn *insn, unsigned int *data)
{
	data[0] = 0;
@@ -351,11 +350,9 @@ static int das08jr_di_rbits(struct comedi_device *dev,

	return 2;
}
#endif

#if IS_ENABLED(CONFIG_COMEDI_DAS08_ISA)
static int das08jr_do_wbits(struct comedi_device *dev,
			    struct comedi_subdevice *s,
static int __maybe_unused
das08jr_do_wbits(struct comedi_device *dev, struct comedi_subdevice *s,
		 struct comedi_insn *insn, unsigned int *data)
{
	struct das08_private_struct *devpriv = dev->private;
@@ -370,11 +367,9 @@ static int das08jr_do_wbits(struct comedi_device *dev,

	return 2;
}
#endif

#if IS_ENABLED(CONFIG_COMEDI_DAS08_ISA)
static int das08jr_ao_winsn(struct comedi_device *dev,
			    struct comedi_subdevice *s,
static int __maybe_unused
das08jr_ao_winsn(struct comedi_device *dev, struct comedi_subdevice *s,
		 struct comedi_insn *insn, unsigned int *data)
{
	int n;
@@ -401,7 +396,6 @@ static int das08jr_ao_winsn(struct comedi_device *dev,

	return n;
}
#endif

/*
 *
@@ -409,9 +403,8 @@ static int das08jr_ao_winsn(struct comedi_device *dev,
 * a different method to force an update.
 *
 */
#if IS_ENABLED(CONFIG_COMEDI_DAS08_ISA)
static int das08ao_ao_winsn(struct comedi_device *dev,
			    struct comedi_subdevice *s,
static int __maybe_unused
das08ao_ao_winsn(struct comedi_device *dev, struct comedi_subdevice *s,
		 struct comedi_insn *insn, unsigned int *data)
{
	int n;
@@ -438,7 +431,6 @@ static int das08ao_ao_winsn(struct comedi_device *dev,

	return n;
}
#endif

static unsigned int i8254_read_channel_low(unsigned int base, int chan)
{
@@ -570,7 +562,7 @@ static int das08_counter_config(struct comedi_device *dev,
	return 2;
}

#ifdef DO_COMEDI_DRIVER_REGISTER
#if DO_COMEDI_DRIVER_REGISTER
static const struct das08_board_struct das08_boards[] = {
#if IS_ENABLED(CONFIG_COMEDI_DAS08_ISA)
	{
@@ -943,7 +935,6 @@ int das08_common_attach(struct comedi_device *dev, unsigned long iobase)
}
EXPORT_SYMBOL_GPL(das08_common_attach);

#if IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
static int das08_pci_attach_common(struct comedi_device *dev,
				   struct pci_dev *pdev)
{
@@ -951,6 +942,9 @@ static int das08_pci_attach_common(struct comedi_device *dev,
	unsigned long pci_iobase;
	struct das08_private_struct *devpriv = dev->private;

	if (!IS_ENABLED(CONFIG_COMEDI_DAS08_PCI))
		return -EINVAL;

	devpriv->pdev = pdev;
	/*  enable PCI device and reserve I/O spaces */
	if (comedi_pci_enable(pdev, dev->driver->driver_name)) {
@@ -977,28 +971,28 @@ static int das08_pci_attach_common(struct comedi_device *dev,
#endif
	return das08_common_attach(dev, iobase);
}
#endif

#if IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
static const struct das08_board_struct *
das08_find_pci_board(struct pci_dev *pdev)
{
#if DO_COMEDI_DRIVER_REGISTER
	unsigned int i;
	for (i = 0; i < ARRAY_SIZE(das08_boards); i++)
		if (das08_boards[i].bustype == pci &&
		    pdev->device == das08_boards[i].id)
			return &das08_boards[i];
#endif
	return NULL;
}
#endif

#if IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
/* only called in the PCI probe path, via comedi_pci_auto_config() */
static int __devinit das08_attach_pci(struct comedi_device *dev,
				   struct pci_dev *pdev)
static int __devinit __maybe_unused
das08_attach_pci(struct comedi_device *dev, struct pci_dev *pdev)
{
	int ret;

	if (!IS_ENABLED(CONFIG_COMEDI_DAS08_PCI))
		return -EINVAL;
	ret = alloc_private(dev, sizeof(struct das08_private_struct));
	if (ret < 0)
		return ret;
@@ -1010,9 +1004,7 @@ static int __devinit das08_attach_pci(struct comedi_device *dev,
	}
	return das08_pci_attach_common(dev, pdev);
}
#endif

#if IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
static struct pci_dev *das08_find_pci(struct comedi_device *dev,
				      int bus, int slot)
{
@@ -1063,10 +1055,9 @@ static struct pci_dev *das08_find_pci(struct comedi_device *dev,
			thisboard->name);
	return NULL;
}
#endif

#ifdef DO_COMEDI_DRIVER_REGISTER
static int das08_attach(struct comedi_device *dev, struct comedi_devconfig *it)
static int __maybe_unused
das08_attach(struct comedi_device *dev, struct comedi_devconfig *it)
{
	const struct das08_board_struct *thisboard = comedi_board(dev);
	struct das08_private_struct *devpriv;
@@ -1097,7 +1088,6 @@ static int das08_attach(struct comedi_device *dev, struct comedi_devconfig *it)
	} else
		return -EIO;
}
#endif /* DO_COMEDI_DRIVER_REGISTER */

void das08_common_detach(struct comedi_device *dev)
{
@@ -1106,8 +1096,7 @@ void das08_common_detach(struct comedi_device *dev)
}
EXPORT_SYMBOL_GPL(das08_common_detach);

#ifdef DO_COMEDI_DRIVER_REGISTER
static void das08_detach(struct comedi_device *dev)
static void __maybe_unused das08_detach(struct comedi_device *dev)
{
	const struct das08_board_struct *thisboard = comedi_board(dev);
	struct das08_private_struct *devpriv = dev->private;
@@ -1126,16 +1115,13 @@ static void das08_detach(struct comedi_device *dev)
		}
	}
}
#endif /* DO_COMEDI_DRIVER_REGISTER */

#ifdef DO_COMEDI_DRIVER_REGISTER
#if DO_COMEDI_DRIVER_REGISTER
static struct comedi_driver das08_driver = {
	.driver_name = DRV_NAME,
	.module = THIS_MODULE,
	.attach = das08_attach,
#if IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
	.attach_pci = das08_attach_pci,
#endif
	.detach = das08_detach,
	.board_name = &das08_boards[0].name,
	.num_names = sizeof(das08_boards) / sizeof(struct das08_board_struct),
@@ -1170,7 +1156,7 @@ static struct pci_driver das08_pci_driver = {
};
#endif /* CONFIG_COMEDI_DAS08_PCI */

#ifdef DO_COMEDI_DRIVER_REGISTER
#if DO_COMEDI_DRIVER_REGISTER
#if IS_ENABLED(CONFIG_COMEDI_DAS08_PCI)
module_comedi_pci_driver(das08_driver, das08_pci_driver);
#else