]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: cb_pcidda: remove the debug output of the eeprom data
authorH Hartley Sweeten <hartleys@visionengravers.com>
Wed, 24 Oct 2012 23:30:38 +0000 (16:30 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Oct 2012 02:35:49 +0000 (19:35 -0700)
This is just noise.

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/cb_pcidda.c

index 8feaa31b1be9e933dbe708b46a32f72505a04a1c..0e5b85d9bb9edc7b91418aa32d808f76698ae74f 100644 (file)
@@ -526,12 +526,9 @@ static int cb_pcidda_attach_pci(struct comedi_device *dev,
        s = &dev->subdevices[2];
        subdev_8255_init(dev, s, NULL, iobase_8255 + PORT2A);
 
-       dev_dbg(dev->class_dev, "eeprom:\n");
-       for (index = 0; index < EEPROM_SIZE; index++) {
+       /* Read the caldac eeprom data */
+       for (index = 0; index < EEPROM_SIZE; index++)
                devpriv->eeprom_data[index] = cb_pcidda_read_eeprom(dev, index);
-               dev_dbg(dev->class_dev, "%i:0x%x\n", index,
-                       devpriv->eeprom_data[index]);
-       }
 
        /*  set calibrations dacs */
        for (index = 0; index < thisboard->ao_chans; index++)