summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorH Hartley Sweeten <hartleys@visionengravers.com>2012-10-24 23:30:38 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-10-25 02:35:49 (GMT)
commit66483378b91287fed134efdf9fa04ec6e96a71ce (patch)
tree492159987d8a63bbd36304aba5c7d3fd66b7ce03 /drivers
parent08f082ed78eb2ece4438c7cd23cf18166e3cce4b (diff)
downloadlinux-fsl-qoriq-66483378b91287fed134efdf9fa04ec6e96a71ce.tar.xz
staging: comedi: cb_pcidda: remove the debug output of the eeprom data
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/comedi/drivers/cb_pcidda.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/staging/comedi/drivers/cb_pcidda.c b/drivers/staging/comedi/drivers/cb_pcidda.c
index 8feaa31..0e5b85d 100644
--- a/drivers/staging/comedi/drivers/cb_pcidda.c
+++ b/drivers/staging/comedi/drivers/cb_pcidda.c
@@ -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++)