Commit 44c5f629 authored by Conrad Gomes's avatar Conrad Gomes Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: fix line over 80 character warning in unioxx5.c



This is a patch to unioxx5.c that fixes the line over 80 character
warning found by checkpatch.pl by initializing n_subd before the
for loop

Signed-off-by: default avatarConrad Gomes <conrad.s.j.gomes@gmail.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 82d939ec
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -435,9 +435,10 @@ static int unioxx5_attach(struct comedi_device *dev,

	dev->iobase = iobase;
	iobase += UNIOXX5_SUBDEV_BASE;
	n_subd = 0;

	/* defining number of subdevices and getting they types (it must be 'g01')  */
	for (i = n_subd = 0, ba = iobase; i < 4; i++, ba += UNIOXX5_SUBDEV_ODDS) {
	for (i = 0, ba = iobase; i < 4; i++, ba += UNIOXX5_SUBDEV_ODDS) {
		id = inb(ba + 0xE);
		num = inb(ba + 0xF);