staging: comedi: das16: absorb das1600_mode_detect() into caller
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 29 Jul 2013 21:05:37 +0000 (14:05 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Aug 2013 00:38:03 +0000 (17:38 -0700)
This function is only called during the board attach to determine the
pacer clock speed for the boards capable of bursting.

Absorb it into the caller and remove the attach noise.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/das16.c

index 2169cd7286556738e6d91308b8d85fd21d66f0fa..7dae83e1f96a67f8f2a806923bb18c5e7fe59dc7 100644 (file)
@@ -984,24 +984,6 @@ static int das16_probe(struct comedi_device *dev, struct comedi_devconfig *it)
        return 0;
 }
 
-static int das1600_mode_detect(struct comedi_device *dev)
-{
-       struct das16_private_struct *devpriv = dev->private;
-       int status = 0;
-
-       status = inb(dev->iobase + DAS1600_STATUS_REG);
-
-       if (status & DAS1600_STATUS_CLK_10MHZ) {
-               devpriv->clockbase = 100;
-               printk(KERN_INFO " 10MHz pacer clock\n");
-       } else {
-               devpriv->clockbase = 1000;
-               printk(KERN_INFO " 1MHz pacer clock\n");
-       }
-
-       return 0;
-}
-
 static void das16_reset(struct comedi_device *dev)
 {
        outb(0, dev->iobase + DAS16_STATUS_REG);
@@ -1058,7 +1040,12 @@ static int das16_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 
        /*  get master clock speed */
        if (devpriv->can_burst) {
-               das1600_mode_detect(dev);
+               status = inb(dev->iobase + DAS1600_STATUS_REG);
+
+               if (status & DAS1600_STATUS_CLK_10MHZ)
+                       devpriv->clockbase = 100;
+               else
+                       devpriv->clockbase = 1000;
        } else {
                if (it->options[3])
                        devpriv->clockbase = 1000 / it->options[3];
This page took 0.028087 seconds and 5 git commands to generate.