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

Commit 2bb9c335 authored by Maurice Dawson's avatar Maurice Dawson Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: fix another brace coding style issues in ni_labpc.c



This is a patch to the ni_labpc.c file that fixes up a brace warning
found by the checkpatch.pl tool

Signed-off-by: default avatarMaurice Dawson <mauricedawson2699@googlemail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8377e813
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -638,9 +638,8 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
		s->insn_read = labpc_eeprom_read_insn;
		s->insn_write = labpc_eeprom_write_insn;

		for (i = 0; i < EEPROM_SIZE; i++) {
		for (i = 0; i < EEPROM_SIZE; i++)
			devpriv->eeprom_data[i] = labpc_eeprom_read(dev, i);
		}
#ifdef LABPC_DEBUG
		printk(" eeprom:");
		for (i = 0; i < EEPROM_SIZE; i++) {