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

Commit 7b09c9f6 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: ni_labpc: use dev->board_name instead of DRV_NAME



In labpc_common_attach(), initialize the dev->board_name early and
use that instead of DRV_NAME when allocating the resources.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cacedd0c
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -1672,7 +1672,9 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
	int ret;
	int i;

	dev_info(dev->class_dev, "ni_labpc: %s\n", board->name);
	dev->board_name = board->name;

	dev_info(dev->class_dev, "ni_labpc: %s\n", dev->board_name);
	if (iobase == 0) {
		dev_err(dev->class_dev, "io base address is zero!\n");
		return -EINVAL;
@@ -1680,7 +1682,7 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
	/*  request io regions for isa boards */
	if (board->bustype == isa_bustype) {
		/* check if io addresses are available */
		if (!request_region(iobase, LABPC_SIZE, DRV_NAME)) {
		if (!request_region(iobase, LABPC_SIZE, dev->board_name)) {
			dev_err(dev->class_dev, "I/O port conflict\n");
			return -EIO;
		}
@@ -1711,7 +1713,7 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
		    board->bustype == pcmcia_bustype)
			isr_flags |= IRQF_SHARED;
		if (request_irq(irq, labpc_interrupt, isr_flags,
				DRV_NAME, dev)) {
				dev->board_name, dev)) {
			dev_err(dev->class_dev, "unable to allocate irq %u\n",
				irq);
			return -EINVAL;
@@ -1733,7 +1735,7 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
		if (devpriv->dma_buffer == NULL)
			return -ENOMEM;

		if (request_dma(dma_chan, DRV_NAME)) {
		if (request_dma(dma_chan, dev->board_name)) {
			dev_err(dev->class_dev,
				"failed to allocate dma channel %u\n",
				dma_chan);
@@ -1747,8 +1749,6 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
	}
#endif

	dev->board_name = board->name;

	ret = comedi_alloc_subdevices(dev, 5);
	if (ret)
		return ret;