staging: comedi: comedi_parport: cleanup dev->board_name
authorH Hartley Sweeten <hartleys@visionengravers.com>
Mon, 20 Aug 2012 21:30:27 +0000 (14:30 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 4 Sep 2012 18:28:45 +0000 (11:28 -0700)
Use the 'dev->driver->driver_name' for the 'dev->board_name'. And use
the 'dev->board_name' for the resource name passed to request_region
and request_irq.

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>
drivers/staging/comedi/drivers/comedi_parport.c

index fcad42369119d95ea02931f17a00344e1c256838..fc59cb2e7eabf080c2e1069e3efd3009e76b5420 100644 (file)
@@ -302,9 +302,11 @@ static int parport_attach(struct comedi_device *dev,
        unsigned long iobase;
        struct comedi_subdevice *s;
 
+       dev->board_name = dev->driver->driver_name;
+
        iobase = it->options[0];
        printk(KERN_INFO "comedi%d: parport: 0x%04lx ", dev->minor, iobase);
-       if (!request_region(iobase, PARPORT_SIZE, "parport (comedi)")) {
+       if (!request_region(iobase, PARPORT_SIZE, dev->board_name)) {
                printk(KERN_ERR "I/O port conflict\n");
                return -EIO;
        }
@@ -313,7 +315,7 @@ static int parport_attach(struct comedi_device *dev,
        irq = it->options[1];
        if (irq) {
                printk(KERN_INFO " irq=%u", irq);
-               ret = request_irq(irq, parport_interrupt, 0, "comedi_parport",
+               ret = request_irq(irq, parport_interrupt, 0, dev->board_name,
                                  dev);
                if (ret < 0) {
                        printk(KERN_ERR " irq not available\n");
@@ -321,7 +323,6 @@ static int parport_attach(struct comedi_device *dev,
                }
                dev->irq = irq;
        }
-       dev->board_name = "parport";
 
        ret = comedi_alloc_subdevices(dev, 4);
        if (ret)
This page took 0.026142 seconds and 5 git commands to generate.