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

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

staging: comedi: daqboard2000: remove DEBUG_EEPROM messages



DEBUG_EEPROM is not defined anywhere and these messages are just
noise. Remove them.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1403e797
Loading
Loading
Loading
Loading
+3 −19
Original line number Diff line number Diff line
@@ -542,32 +542,19 @@ static int initialize_daqboard2000(struct comedi_device *dev,

	/* Check to make sure the serial eeprom is present on the board */
	secr = readl(devpriv->plx + 0x6c);
	if (!(secr & DAQBOARD2000_EEPROM_PRESENT)) {
#ifdef DEBUG_EEPROM
		dev_dbg(dev->class_dev, "no serial eeprom\n");
#endif
	if (!(secr & DAQBOARD2000_EEPROM_PRESENT))
		return -EIO;
	}

	for (retry = 0; retry < 3; retry++) {
#ifdef DEBUG_EEPROM
		dev_dbg(dev->class_dev, "Programming EEPROM try %x\n", retry);
#endif

		daqboard2000_resetLocalBus(dev);
		daqboard2000_reloadPLX(dev);
		daqboard2000_pulseProgPin(dev);
		if (daqboard2000_pollCPLD(dev, DAQBOARD2000_CPLD_INIT)) {
			for (i = 0; i < len; i++) {
				if (cpld_array[i] == 0xff
				    && cpld_array[i + 1] == 0x20) {
#ifdef DEBUG_EEPROM
					dev_dbg(dev->class_dev,
						"Preamble found at %d\n", i);
#endif
				if (cpld_array[i] == 0xff &&
				    cpld_array[i + 1] == 0x20)
					break;
			}
			}
			for (; i < len; i += 2) {
				int data =
				    (cpld_array[i] << 8) + cpld_array[i + 1];
@@ -575,9 +562,6 @@ static int initialize_daqboard2000(struct comedi_device *dev,
					break;
			}
			if (i >= len) {
#ifdef DEBUG_EEPROM
				dev_dbg(dev->class_dev, "Programmed\n");
#endif
				daqboard2000_resetLocalBus(dev);
				daqboard2000_reloadPLX(dev);
				result = 0;